  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: -apple-system, BlinkMacSystemFont, sans-serif; background: #fff; color: #111; line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid #f0f0f0; }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 1rem 1.5rem; display: flex; justify-content: space-between; align-items: center; }
    .logo { font-size: 1.5rem; font-weight: 700; }
    .nav-links { display: flex; gap: 2rem; font-size: 0.875rem; }
    .nav-links a:hover { color: #888; }
    .hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 1.5rem; }
    .hero h1 { font-size: 5rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
    .hero .title { color: #999; font-size: 0.875rem; letter-spacing: 0.2em; margin-bottom: 1.5rem; }
    .hero .tagline { color: #666; font-size: 0.875rem; }
    section { padding: 6rem 1.5rem; }
    .section-gray { background: #f9f9f9; }
    .container { max-width: 1200px; margin: 0 auto; }
    .section-label { color: #999; font-size: 0.75rem; letter-spacing: 0.2em; margin-bottom: 0.5rem; }
    .section-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.5rem; }
    .section-subtitle { color: #666; margin-bottom: 2rem; }
    .filter { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }
    .filter-btn { padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.875rem; border: 1px solid #e0e0e0; background: #fff; color: #666; cursor: pointer; transition: all 0.2s; }
    .filter-btn:hover { background: #f5f5f5; }
    .filter-btn.active { background: #111; color: #fff; border-color: #111; }
    .grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
    .card { position: relative; aspect-ratio: 16/10; border-radius: 12px; overflow: hidden; cursor: pointer; background: #eee; }
    .card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .card:hover img { transform: scale(1.05); }
    .card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
    .card:hover .card-overlay { background: rgba(0,0,0,0.4); }
    .play-btn { width: 4rem; height: 4rem; background: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); font-size: 1.5rem; }
    .card:hover .play-btn { opacity: 1; }
    .card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1rem; background: rgba(255,255,255,0.95); transform: translateY(100%); transition: transform 0.3s; }
    .card:hover .card-info { transform: translateY(0); }
    .card-category { color: #999; font-size: 0.75rem; letter-spacing: 0.1em; }
    .card-title { font-weight: 600; color: #111; }
    .card-duration { color: #666; font-size: 0.875rem; }
    .about-inner { max-width: 600px; margin: 0 auto; }
    .about-text p { color: #555; margin-bottom: 1rem; }
    .style-box { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #e0e0e0; }
    .style-label { font-size: 0.75rem; color: #999; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
    .style-list { list-style: none; font-size: 0.875rem; color: #555; }
    .style-list li { margin-bottom: 0.5rem; }
    .contact-inner { max-width: 600px; margin: 0 auto; text-align: center; }
    .contact-btn { display: inline-block; background: #111; color: #fff; padding: 1rem 2rem; border-radius: 50px; font-weight: 500; transition: background 0.2s; }
    .contact-btn:hover { background: #333; }
    .social { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
    .social a { padding: 0.75rem 1.5rem; border: 1px solid #e0e0e0; border-radius: 50px; font-size: 0.875rem; transition: all 0.2s; }
    .social a:hover { background: #111; color: #fff; border-color: #111; }
    footer { border-top: 1px solid #f0f0f0; padding: 2rem 1.5rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; color: #999; }
    .modal { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.9); display: none; align-items: center; justify-content: center; padding: 1.5rem; }
    .modal.active { display: flex; }
    .modal-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 3rem; height: 3rem; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer; color: #fff; font-size: 1.5rem; }
    .modal-content { max-width: 900px; width: 100%; }
    .modal-video { aspect-ratio: 16/9; background: #222; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: #666; text-align: center; }
    .modal-title { font-size: 1.25rem; font-weight: 700; color: #fff; }
    .modal-meta { color: #999; }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hero h1 { font-size: 3rem; }
      .about-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; gap: 0.5rem; }
    }
  </style>
