* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --accent: #e60012; }
body {
  font-family: 'Zen Kaku Gothic New', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #161616;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; }
input, select, textarea, button { font-family: inherit; }

details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
details[open] .faq-plus { transform: rotate(45deg); }
.faq-plus { transition: transform 0.2s; display: inline-block; }

@keyframes sakura-fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(102vh) rotate(400deg); opacity: 0.2; }
}
.sakura-petal {
  position: fixed; top: 0;
  background: linear-gradient(135deg,#fcdfe6,#f3a6b8);
  border-radius: 100% 0 100% 0;
  animation: sakura-fall linear infinite;
  pointer-events: none; z-index: 2;
}

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  padding: 6px; flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #34302b; border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  #nav-menu {
    display: none !important;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #efece8;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 24px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  #nav-menu.open { display: flex !important; }
  #nav-menu a {
    padding: 14px 0 !important;
    border-bottom: 1px solid #f0ece7;
    font-size: 16px !important;
    color: #34302b !important;
  }
  #nav-menu > span {
    padding: 14px 0 !important;
    border-bottom: 1px solid #f0ece7;
    font-size: 16px !important;
    border-radius: 0 !important;
    width: 100% !important;
  }
  .legal-grid { grid-template-columns: 1fr !important; }
}

/* Nav dropdown */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-drop-trigger {
  cursor: pointer; display: inline-flex; align-items: center; gap: 5px;
  color: #34302b; font-size: 15px; font-weight: 500; outline: none;
}
.nav-drop-trigger svg { transition: transform 0.2s; }
.has-dropdown:hover .nav-drop-trigger svg,
.has-dropdown:focus-within .nav-drop-trigger svg { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: #fff; border: 1px solid #efece8; border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.13);
  padding: 8px; display: none; flex-direction: column; z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: flex; }
.dropdown a {
  padding: 11px 14px; font-size: 14px; color: #34302b;
  border-radius: 8px; white-space: nowrap; font-weight: 500;
}
.dropdown a:hover { background: #f8f6f2; color: var(--accent); }

@media (max-width: 768px) {
  .nav-item.has-dropdown { width: 100%; flex-direction: column; align-items: stretch; }
  .nav-drop-trigger {
    padding: 14px 0; border-bottom: 1px solid #f0ece7;
    font-size: 16px; justify-content: space-between;
  }
  .dropdown {
    position: static; display: flex !important; min-width: 0;
    box-shadow: none; border: none; border-radius: 0;
    padding: 0 0 6px 14px; background: transparent;
  }
}

/* Legal content */
.legal-hero {
  padding: 64px 32px 0;
  max-width: 1100px; margin: 0 auto;
}
.legal-hero .eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.legal-hero h1 {
  font-size: 46px; font-weight: 900; line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 18px;
}
.legal-hero .lead {
  font-size: 17px; color: #5f594f; line-height: 1.7; max-width: 680px;
}
.legal-body {
  padding: 40px 32px 96px;
  max-width: 1100px; margin: 0 auto;
}
.legal-card {
  background: #fff; border: 1px solid #ececec;
  border-radius: 20px; padding: 40px 48px;
}
.legal-card h2 {
  font-size: 19px; font-weight: 800; margin: 32px 0 10px; color: #161616;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { font-size: 15px; line-height: 1.7; color: #5f594f; margin-bottom: 14px; }
.legal-card ul { margin: 0 0 16px 22px; }
.legal-card li { font-size: 15px; line-height: 1.7; color: #5f594f; margin-bottom: 8px; }
.legal-card a { color: var(--accent); }
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid #f0ece8; }
.info-table tr:last-child { border-bottom: none; }
.info-table th, .info-table td {
  text-align: left; vertical-align: top;
  padding: 18px 20px; font-size: 15px; line-height: 1.65;
}
.info-table th {
  width: 36%; font-weight: 700; color: #161616;
  background: #faf8f5; border-right: 1px solid #f0ece8;
}
.info-table td { color: #5f594f; }
.info-table a { color: var(--accent); }

@media (max-width: 640px) {
  .legal-hero { padding: 40px 20px 0; }
  .legal-hero h1 { font-size: 32px; }
  .legal-body { padding: 28px 20px 64px; }
  .legal-card { padding: 28px 24px; }
  .info-table th, .info-table td { padding: 13px 14px; font-size: 14px; }
  .info-table th { width: 40%; }
}
