* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #fdf6ee;
  --beige: #f5e6d0;
  --brown: #7c4e2e;
  --brown-light: #a0693a;
  --brown-dark: #4a2c10;
  --pink: #f4a7b9;
  --text: #3d2010;
  --text-light: #7c6050;
}

body {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ── 背景装飾 ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, #f9e8d2 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, #f7dfc8 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  padding: 48px 24px;
  text-align: center;
}

/* ── 肉球アイコン（装飾） ── */
.paw-top {
  font-size: 2rem;
  margin-bottom: 8px;
  opacity: 0.6;
  letter-spacing: 4px;
}

/* ── ロゴエリア ── */
.logo-area {
  margin-bottom: 0;
}

.logo-image {
  width: 100%;
  max-width: 100%;
  height: 380px;
  object-fit: contain;
  object-position: center 30%;
  display: block;
  margin: 0 auto -160px;
}

@media (max-width: 480px) {
  .logo-image {
    height: 220px;
    margin: 0 auto -130px;
  }
}

.title-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 0 auto -32px;
}

.shop-name {
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-weight: 900;
  color: var(--brown-dark);
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.shop-sub {
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  color: var(--brown-light);
  margin-top: 4px;
  letter-spacing: 0.15em;
}

/* ── キャッチコピー ── */
.tagline {
  font-size: clamp(0.85rem, 3vw, 1rem);
  color: var(--text-light);
  margin-bottom: 40px;
  letter-spacing: 0.2em;
}

.tagline::before,
.tagline::after {
  content: '〜 ';
}
.tagline::after {
  content: ' 〜';
}

/* ── Coming Soon カード ── */
.card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(160, 105, 58, 0.18);
  border-radius: 24px;
  padding: 40px 32px;
  margin-bottom: 32px;
  box-shadow: 0 8px 32px rgba(122, 78, 46, 0.1);
}

.coming-soon-label {
  display: inline-block;
  background: var(--brown);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  padding: 6px 20px;
  border-radius: 99px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.open-date-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}

.open-date {
  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.open-note {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--brown-light), transparent);
  margin: 0 auto 28px;
}

/* ── 特徴リスト ── */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.feature-icon {
  font-size: 1.6rem;
}

.feature-label {
  font-size: 0.72rem;
  color: var(--text-light);
  line-height: 1.4;
  text-align: center;
}

/* ── お問い合わせ・SNS ── */
.contact-section {
  margin-bottom: 16px;
}

.contact-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-light);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--beige);
  border: 1px solid rgba(160, 105, 58, 0.2);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: var(--brown);
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 20px;
}

.contact-email:hover {
  background: #eeddc4;
}

.contact-preparing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--beige);
  border-radius: 12px;
  padding: 8px 16px;
  margin-bottom: 20px;
  border: 1px dashed rgba(160, 105, 58, 0.3);
}

.sns-list {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid;
  transition: all 0.2s;
}

.sns-btn.instagram {
  color: #c13584;
  border-color: #c13584;
}

.sns-btn.instagram:hover {
  background: #c13584;
  color: #fff;
}

.sns-btn.line {
  color: #06c755;
  border-color: #06c755;
}

.sns-btn.line:hover {
  background: #06c755;
  color: #fff;
}

.sns-btn.preparing {
  color: var(--text-light);
  border-color: rgba(120, 96, 80, 0.3);
  border-style: dashed;
  cursor: default;
  opacity: 0.7;
}

/* ── LINE QR ── */
.line-qr {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.line-qr-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #06c755;
  letter-spacing: 0.1em;
}

.line-qr-img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 2px solid #06c755;
}

/* ── フッター ── */
footer {
  font-size: 0.72rem;
  color: rgba(122, 78, 46, 0.5);
  margin-top: 8px;
}

/* ── レスポンシブ ── */
@media (max-width: 480px) {
  .card {
    padding: 28px 20px;
  }
  .features {
    gap: 16px;
  }
}
