/* ========================================
   AKITO – Japanese Cuisine
   Premium QR Landing Page Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --red:        #C0272D;
  --red-dark:   #9B1C21;
  --red-light:  rgba(192, 39, 45, 0.08);
  --charcoal:   #1A1A1A;
  --charcoal2:  #2C2C2C;
  --ivory:      #F7F4EF;
  --beige:      #EDE8E0;
  --white:      #FFFFFF;
  --muted:      #8A8480;
  --border:     rgba(26, 26, 26, 0.10);
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.10);
  --shadow-btn: 0 4px 20px rgba(192,39,45,0.22);
  --radius-btn: 14px;
  --radius-card:18px;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--charcoal);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(192,39,45,0.055) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -100px; left: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(192,39,45,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

.top-accent {
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  position: fixed; top: 0; left: 0; z-index: 100;
}

.page-wrapper {
  width: 100%; max-width: 480px;
  min-height: 100vh;
  padding: 0 20px 48px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 1;
}

/* HERO */
.hero {
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
  padding-top: 28px; padding-bottom: 18px;
  text-align: center;
}

.logo-wrap { position: relative; display: inline-block; margin-bottom: 16px; }

.logo-ring {
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(192,39,45,0.15);
  animation: pulse-ring 3.5s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50%       { transform: scale(1.04); opacity: 1; }
}

.logo-img {
  width: 120px; height: 120px;
  object-fit: contain; border-radius: 50%;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(192,39,45,0.18));
  transition: transform 0.28s ease;
}

.logo-img:hover { transform: scale(1.03); }

.brand-name {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 10vw, 3.4rem);
  font-weight: 500; letter-spacing: 0.26em;
  color: var(--charcoal); line-height: 1;
  margin-bottom: 4px; text-transform: uppercase;
}

.brand-line {
  width: 48px; height: 2px;
  background: var(--red); border-radius: 2px;
  margin: 6px auto 6px;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.22em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 8px;
}

.kanji-accent {
  font-family: var(--font-head);
  font-size: 0.9rem; color: var(--red);
  letter-spacing: 0.12em; opacity: 0.75;`r`n  margin-bottom: 8px;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 300;
  color: var(--muted); line-height: 1.7;
  max-width: 300px; margin: 0 auto;
}

.wave-divider {
  width: 100%; display: flex; align-items: center;
  gap: 12px; margin: 2px 0 18px;
}
.wave-divider::before {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.wave-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.wave-icon { font-size: 1rem; color: var(--red); opacity: 0.6; letter-spacing: 3px; }

/* CTA BUTTONS */
.cta-section { width: 100%; display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }

.cta-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0 24px; height: 66px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-family: var(--font-body); font-weight: 500;
  font-size: 0.96rem; letter-spacing: 0.03em;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0; transition: opacity 0.28s ease;
}
.cta-btn:hover::before, .cta-btn:active::before { opacity: 1; }
.cta-btn:active { transform: scale(0.97); }

.btn-left { display: flex; align-items: center; gap: 14px; }
.btn-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; flex-shrink: 0;
}
.btn-label { display: flex; flex-direction: column; align-items: flex-start; }
.btn-title { font-size: 0.97rem; font-weight: 500; line-height: 1.1; }
.btn-hint { font-size: 0.72rem; font-weight: 300; opacity: 0.75; margin-top: 2px; }
.btn-arrow { font-size: 1rem; opacity: 0.6; transition: transform 0.28s ease; }
.cta-btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white); box-shadow: var(--shadow-btn); height: 74px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(192,39,45,0.32); }
.btn-primary .btn-icon { background: rgba(255,255,255,0.15); }

.btn-secondary {
  background: var(--white); color: var(--charcoal);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(26,26,26,0.15); }
.btn-secondary .btn-icon { background: #F1F3F4; }

.btn-instagram {
  background: linear-gradient(135deg, #1A1A1A 0%, #2C2C2C 100%);
  color: var(--white); box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.btn-instagram .btn-icon { background: rgba(255,255,255,0.10); }

.btn-asthoriaverse {
  background: var(--white); color: var(--charcoal);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.btn-asthoriaverse:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(26,26,26,0.15); }
.btn-asthoriaverse .btn-icon--img { background: transparent; padding: 0; }


/* INFO CARDS */
.info-section { width: 100%; display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }

.section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.section-label-line { height: 1px; flex: 1; background: var(--border); }
.section-label-text {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
}

.info-card {
  background: var(--white); border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.info-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--red), transparent);
  border-radius: 3px 0 0 3px;
}

.card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.card-icon {
  width: 34px; height: 34px; background: var(--red-light);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem;
}
.card-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 500; letter-spacing: 0.04em; color: var(--charcoal); }

.wifi-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--beige); }
.wifi-row:last-of-type { border-bottom: none; }
.wifi-label { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.wifi-value { font-size: 0.92rem; font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; }

.copy-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 14px;
  background: var(--red-light); border: 1px solid rgba(192,39,45,0.18);
  border-radius: 20px; color: var(--red);
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.05em; cursor: pointer;
  transition: background 0.28s ease, transform 0.28s ease;
  -webkit-tap-highlight-color: transparent; white-space: nowrap;
}
.copy-btn:hover, .copy-btn:active { background: rgba(192,39,45,0.14); transform: scale(0.97); }
.copy-btn.copied { background: rgba(34,139,34,0.08); border-color: rgba(34,139,34,0.2); color: #228B22; }
.copy-icon { font-size: 0.8rem; }

.hours-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--beige); }
.hours-row:last-of-type { border-bottom: none; }
.hours-day { font-size: 0.85rem; font-weight: 400; color: var(--charcoal2); }
.hours-time { font-size: 0.85rem; font-weight: 500; color: var(--red); letter-spacing: 0.04em; }
.hours-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(34,139,34,0.08); border: 1px solid rgba(34,139,34,0.18);
  border-radius: 20px; padding: 3px 10px;
  font-size: 0.68rem; font-weight: 500; color: #228B22;
  letter-spacing: 0.08em; margin-top: 12px;
}
.hours-badge::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #228B22;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

/* FOOTER */
.footer {
  width: 100%; display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding-top: 16px; border-top: 1px solid var(--border);
}
.footer-kanji { font-size: 1.1rem; color: var(--red); opacity: 0.5; letter-spacing: 0.15em; }
.footer-copy { font-family: var(--font-body); font-size: 0.72rem; font-weight: 300; color: var(--muted); letter-spacing: 0.12em; text-align: center; }

/* TOAST */
.toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal); color: var(--white);
  padding: 12px 22px; border-radius: 30px;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 400;
  letter-spacing: 0.04em; box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* RESPONSIVE */
@media (min-width: 520px) {
  .page-wrapper { padding: 0 32px 56px; }
  .logo-img { width: 168px; height: 168px; }
  .hero { padding-top: 36px; padding-bottom: 24px; }
}
@media (min-width: 768px) { .page-wrapper { max-width: 520px; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}


