/* C — Cake: soft blush studio, product-first, sticky order (ChouChou-like) */
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,500;6..96,600&family=Figtree:wght@400;500;600;700&display=swap");

:root {
  --bg: #fff8f6;
  --ink: #2a1520;
  --muted: #9a7a84;
  --berry: #8b2048;
  --blush: #f3d0d8;
  --cream: #fff;
  --line: #efd8de;
  --font: "Figtree", "Apple SD Gothic Neo", sans-serif;
  --display: "Bodoni Moda", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 10%, #f8e4ea 0%, transparent 35%),
    radial-gradient(circle at 10% 60%, #ffe9df 0%, transparent 30%),
    var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 5vw;
}
.logo {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}
.pill {
  background: var(--blush);
  color: var(--berry);
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 999px;
}

.hero {
  position: relative;
  width: min(1100px, 92vw);
  margin: 0 auto 2rem;
  min-height: 78svh;
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: #2a1520 center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(42, 21, 32, 0.18);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(42,21,32,0.78) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 5vw, 3rem);
  color: #fff;
  animation: up 0.9s ease both;
}
@keyframes up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}
.hero-inner h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  line-height: 0.98;
  margin: 0 0 0.85rem;
  max-width: 11ch;
  font-weight: 600;
}
.hero-inner p {
  margin: 0 0 1.4rem;
  color: #f3d0d8;
  max-width: 34ch;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.3rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}
.btn-berry { background: var(--berry); color: #fff; }
.btn-soft { background: #fff; color: var(--ink); }
.btn-block { width: 100%; border-radius: 14px; }

.banner {
  width: min(1100px, 92vw);
  margin: 0 auto 1rem;
  padding: 0.85rem 1rem;
  background: #fff1e8;
  color: #9a3412;
  border-radius: 14px;
}

.section {
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 3.5rem 0 1rem;
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.section .sub {
  color: var(--muted);
  margin: 0 0 1.75rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.product {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(139, 32, 72, 0.12);
}
.product-thumb {
  aspect-ratio: 1;
  background: #f3d0d8 center/cover no-repeat;
}
.product-body { padding: 1.1rem 1.15rem 1.3rem; }
.product h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}
.product .price {
  color: var(--berry);
  font-weight: 800;
  font-size: 1.1rem;
}
.product p { margin: 0.35rem 0 0; color: var(--muted); font-size: 0.9rem; }
.product.soldout {
  opacity: 0.55;
  filter: grayscale(0.4);
  pointer-events: none;
}
.product.soldout .product-thumb::after {
  content: "SOLD OUT";
  position: absolute;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.bank {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}
.bank-card, .tip-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem 1.35rem;
}
.bank-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.tip-card {
  background: var(--berry);
  color: #fff;
  border: 0;
}

.order-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}
.order-aside {
  position: sticky;
  top: 1rem;
  background: #2a1520;
  color: #fff;
  border-radius: 24px;
  padding: 1.5rem;
}
.order-aside h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  margin: 0 0 0.75rem;
}
.order-aside p { color: #f3d0d8; margin: 0 0 1rem; }
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.35rem;
}
.form { display: grid; gap: 0.8rem; }
.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.form input, .form select, .form textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  background: #fffaf9;
}
.done {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 18px;
  background: #f3d0d8;
}
.done h3 { margin: 0 0 0.5rem; font-family: var(--display); }

.dock {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  gap: 0.45rem;
  padding: 0.4rem;
  background: rgba(255, 248, 246, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(42, 21, 32, 0.12);
}
.dock a, .dock button {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  cursor: pointer;
}
.dock .main {
  background: var(--berry);
  color: #fff;
}

@media (max-width: 860px) {
  .product-grid { grid-template-columns: 1fr; }
  .bank, .order-wrap { grid-template-columns: 1fr; }
  .order-aside { position: static; }
  .hero { min-height: 70svh; border-radius: 20px; }
  body { padding-bottom: 84px; }
}
