/* ===========================================================
   Concierge #why section v2 — LUXURY / MASS / AI CONCIERGE
   Scope: only `main #why`. No global side-effects.
   =========================================================== */

main #why {
  --hero-orange: #FF6A1F;
  --hero-blue: #0050FF;
  --hero-ink: #0A0A14;
  --hero-mute: #5A5A6A;

  background: #FFFFFF;
  padding: 96px 32px;
}

main #why .section-inner,
main #why .why-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- header (preserved) --------------------------- */
main #why .why-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
main #why .why-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hero-orange);
  font-weight: 500;
}
main #why .why-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--hero-orange);
}
main #why .why-h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 14px 0 10px;
  color: var(--hero-ink);
}
main #why .why-sub-header {
  font-size: 15px;
  color: var(--hero-mute);
  line-height: 1.5;
  margin: 0;
}

/* ---------- grid ----------------------------------------- */
main #why .why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ---------- card ----------------------------------------- */
main #why .why-card {
  background: #FFFFFF;
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 32px 28px 36px;
  height: 560px;
  display: flex;
  flex-direction: column;
}
main #why .why-card.tinted {
  background: linear-gradient(135deg, #FFF5EE 0%, #EEF3FE 100%);
  border-color: rgba(255, 106, 31, 0.12);
}

/* ---------- illustration --------------------------------- */
main #why .why-illust {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
main #why .why-illust svg {
  display: block;
}

/* ---------- bottom (copy block) -------------------------- */
main #why .why-bottom {
  margin-top: auto;
}

main #why .why-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--hero-orange);
  margin-bottom: 14px;
}

main #why .why-h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--hero-ink);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  height: 54px;
}
main #why .why-h3 .ln {
  display: block;
  white-space: nowrap;
}

main #why .why-sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--hero-mute);
  margin: 0;
  height: 62px;
}

/* ---------- animation ------------------------------------ */
@keyframes cardrise {
  0%, 30%   { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
  70%, 100% { transform: translateY(0); }
}
main #why .card-anim {
  animation: cardrise 2.4s ease-in-out infinite;
  transform-origin: center;
}

/* ---------- responsive ----------------------------------- */
@media (max-width: 900px) {
  main #why { padding: 64px 24px; }
  main #why .why-grid { grid-template-columns: 1fr; }
  main #why .why-card { height: 480px; }
}

/* ---------- reduced motion ------------------------------- */
@media (prefers-reduced-motion: reduce) {
  main #why .card-anim { animation: none !important; }
}
