@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@300;400;700&display=swap');

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

:root {
  --navy: #0a1628;
  --navy-mid: #0f2040;
  --navy-light: #1a3060;
  --accent: #00c9a7;
  --silver: #c8d6e5;
  --muted: #7a9bb8;
  --white: #f0f6ff;
  --red: #e84545;
  --gold: #f0a500;
}

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

.page-wrap { max-width: 900px; margin: 0 auto; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 16px 40px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 6px; opacity: 0.4; }

/* ─── HERO ─── */
.hero {
  position: relative;
  background: linear-gradient(180deg, #020a18 0%, #0a1628 60%, #0f2040 100%);
  padding: 56px 40px 72px;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0,201,167,0.03) 60px, rgba(0,201,167,0.03) 61px);
}
.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.28em;
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}
.hero-model {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 12vw, 112px);
  letter-spacing: 0.06em;
  line-height: 0.85;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 8px;
}
.hero-model span { color: var(--accent); }
.hero-name-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: 0.08em;
  color: var(--silver);
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.hero-catch {
  display: inline-block;
  background: rgba(0,201,167,0.12);
  border: 1px solid rgba(0,201,167,0.3);
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 20px;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.hero-img-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto 12px;
  z-index: 1;
}
.hero-img-bg {
  position: absolute;
  inset: 20% -10% 0;
  background: radial-gradient(ellipse, rgba(0,201,167,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-img-wrap img {
  width: 100%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 16px 48px rgba(0,201,167,0.18));
}
.hero-color-note {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

/* ─── SECTION ─── */
.section { padding: 56px 40px; position: relative; }
.section + .section { border-top: 1px solid rgba(255,255,255,0.06); }

.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.section-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--accent); flex-shrink: 0; }
.section-label span { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 0.28em; color: var(--accent); }

.section-title { font-family: 'Noto Sans JP', sans-serif; font-weight: 700; font-size: 26px; letter-spacing: 0.04em; color: var(--white); margin-bottom: 16px; }
.accent-divider { width: 36px; height: 2px; background: var(--accent); margin-bottom: 20px; opacity: 0.45; }

.body-text { font-size: 16px; color: var(--silver); line-height: 1.95; max-width: 680px; }
.body-text em { color: var(--accent); font-style: normal; font-weight: 700; }
.body-text strong { color: var(--white); font-weight: 700; }

/* ─── WARRANTY ─── */
.warranty-block { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; margin-top: 28px; }
.warranty-badge-wrap {
  background: var(--navy-mid);
  border: 1px solid rgba(0,201,167,0.22);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.warranty-badge-wrap img { background: var(--navy-light); padding: 6px; }
.warranty-text strong { display: block; font-weight: 700; font-size: 22px; color: var(--accent); line-height: 1.2; margin-bottom: 8px; }
.warranty-text p { font-size: 15px; color: var(--silver); line-height: 1.8; }
.warranty-text a { color: var(--accent); font-size: 14px; letter-spacing: 0.1em; text-decoration: none; display: inline-block; margin-top: 8px; border-bottom: 1px solid rgba(0,201,167,0.4); padding-bottom: 2px; }
.fin-note { margin-top: 20px; font-size: 15px; color: var(--muted); letter-spacing: 0.08em; border-left: 2px solid var(--accent); padding-left: 12px; }

/* ─── GALLERY ─── */
.zoomable { cursor: zoom-in; transition: opacity 0.15s; display: block; }
.zoomable:hover { opacity: 0.85; }

.img-full { width: 100%; max-width: 680px; }
.img-mid  { width: 100%; max-width: 500px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; max-width: 560px; }
.grid-2 img { width: 100%; display: block; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; max-width: 680px; }
.grid-3 img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; }

.gallery-caption { font-size: 14px; color: var(--muted); letter-spacing: 0.08em; margin: 6px 0 20px; }

.navy-card { background: var(--navy-mid); border: 1px solid rgba(0,201,167,0.2); padding: 16px; max-width: 680px; }
.navy-card img { width: 100%; display: block; }

.feature-catch { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 5vw, 44px); letter-spacing: 0.1em; color: var(--accent); margin: 24px 0 16px; line-height: 1; }

/* ─── VIDEO ─── */
.video-wrap { position: relative; width: 100%; max-width: 680px; padding-bottom: 56.25%; margin-bottom: 8px; background: var(--navy-mid); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-note { font-size: 14px; color: var(--muted); letter-spacing: 0.08em; margin-bottom: 20px; }

/* ─── SPEC TABLE ─── */
.spec-table { width: 100%; max-width: 680px; border-collapse: collapse; margin: 20px 0 8px; }
.spec-table th { background: var(--navy-light); color: var(--accent); font-family: 'Bebas Neue', sans-serif; font-size: 15px; letter-spacing: 0.18em; padding: 12px 16px; border: 1px solid rgba(0,201,167,0.15); font-weight: 400; text-align: center; }
.spec-table td { background: var(--navy-mid); color: var(--silver); font-size: 16px; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.06); text-align: center; }
.spec-note { font-size: 14px; color: var(--muted); margin-bottom: 8px; }

.highlight-list { margin-top: 12px; padding: 14px 18px; background: var(--navy-mid); border-left: 2px solid var(--accent); }
.highlight-list li { font-size: 15px; color: var(--silver); list-style: none; padding: 3px 0; }
.highlight-list li::before { content: '— '; color: var(--accent); }

/* ─── DRIVE ─── */
.drive-grid { display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: start; margin-top: 20px; max-width: 680px; }
.drive-grid img { width: 100%; background: var(--navy-mid); padding: 8px; border: 1px solid rgba(0,201,167,0.15); }
.drive-text { font-size: 15px; color: var(--silver); line-height: 1.9; }

/* ─── BLOG LINKS ─── */
.blog-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; max-width: 680px; }
.blog-link { display: flex; flex-direction: column; text-decoration: none; background: var(--navy-mid); border: 1px solid rgba(0,201,167,0.15); overflow: hidden; transition: border-color 0.2s; }
.blog-link:hover { border-color: rgba(0,201,167,0.5); }
.blog-link img { width: 100%; height: 110px; object-fit: cover; }
.blog-link-label { padding: 10px 12px; font-size: 14px; color: var(--accent); letter-spacing: 0.06em; line-height: 1.5; }

/* ─── PRICE ─── */
.price-block { background: var(--navy-mid); border: 1px solid rgba(0,201,167,0.2); padding: 36px 40px; }
.price-model { font-weight: 700; font-size: 20px; letter-spacing: 0.06em; color: var(--white); margin-bottom: 20px; }
.price-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.price-main { font-family: 'Bebas Neue', sans-serif; font-size: 48px; letter-spacing: 0.04em; color: var(--white); line-height: 1; }
.price-tax { font-size: 14px; color: var(--muted); }
.price-incl { font-size: 16px; color: var(--silver); margin-bottom: 12px; }
.price-gift { display: inline-block; margin: 8px 0 12px; background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.35); color: var(--gold); font-size: 15px; font-weight: 700; letter-spacing: 0.08em; padding: 6px 16px; }
.price-stock { font-size: 15px; color: var(--silver); line-height: 1.8; margin-bottom: 24px; font-weight: 700; }
.price-stock em { color: var(--red); font-style: normal; }
.price-comment { font-size: 15px; color: var(--muted); line-height: 1.9; max-width: 560px; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.cta-btn { display: inline-block; background: var(--accent); color: #020a18; font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 0.22em; padding: 14px 44px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.cta-btn:hover { background: #00f2c8; transform: translateY(-2px); }
.info-links { margin-top: 16px; font-size: 14px; color: var(--muted); }
.info-links a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(0,201,167,0.3); }

/* ─── FOOTER NAV ─── */
.footer-nav { padding: 32px 40px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 12px; align-items: center; }
.footer-nav a { color: var(--muted); font-size: 15px; letter-spacing: 0.08em; text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent); }
.footer-nav .back-link { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 0.2em; color: var(--accent); border: 1px solid rgba(0,201,167,0.3); padding: 8px 24px; transition: background 0.2s; }
.footer-nav .back-link:hover { background: rgba(0,201,167,0.08); }

/* ─── LIGHTBOX ─── */
#lightbox { display: none; position: fixed; inset: 0; background: rgba(2,10,24,0.95); z-index: 9999; align-items: center; justify-content: center; padding: 24px; }
#lightbox.open { display: flex; }
#lightbox img { max-width: min(92vw, 960px); max-height: 88vh; object-fit: contain; filter: drop-shadow(0 0 60px rgba(0,201,167,0.1)); }
#lb-close { position: fixed; top: 20px; right: 24px; font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 0.1em; color: var(--accent); cursor: pointer; background: none; border: none; opacity: 0.8; transition: opacity 0.15s; }
#lb-close:hover { opacity: 1; }
#lb-caption { position: fixed; bottom: 20px; left: 0; right: 0; text-align: center; font-size: 14px; letter-spacing: 0.1em; color: var(--muted); }

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .breadcrumb, .section, .price-block, .footer-nav { padding-left: 20px; padding-right: 20px; }
  .hero { padding: 48px 20px 56px; }
  .drive-grid { grid-template-columns: 1fr; }
  .blog-links { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .warranty-block { flex-direction: column; }
}
