* { margin:0; padding:0; box-sizing:border-box; }
:root {
  --gold: #e8b84e;
  --gold-light: #ffd074;
  --gold-dark: #b08930;
  --green: #4eca7a;
  --green-dark: #3ba562;
  --red: #ff6b6b;
  --black: #060c1a;
  --dark: #0a1324;
  --panel: #0e1a30;
  --panel-2: #13213c;
  --line: #162541;
  --navy-accent: #1e3a70;
  --text: #f0f4ff;
  --text-2: #b8c2d6;
  --text-3: #7a8299;
  --text-4: #4a5472;
}
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}

/* SHARED */
section { padding: 100px 64px; position: relative; }
.wrap { max-width: 1240px; margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
}
.eyebrow::before { content:''; width:24px; height:1px; background:var(--gold); }

h2.sec-h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.lead {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 2;
  max-width: 540px;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--gold); text-decoration: none; text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(200,169,110,0.3);
  transition: gap 0.3s, border-color 0.3s;
}
.link-arrow:hover { gap: 16px; border-color: var(--gold); }
.btn-primary {
  background: var(--gold); color: #000;
  padding: 18px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff;
  padding: 18px 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== HEADER ===== */
header {
  position: fixed; top:0; left:0; right:0; z-index: 100;
  padding: 22px 48px;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(8,8,8,0.8), transparent);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, padding 0.3s;
}
header.scrolled {
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(200,169,110,0.15);
  padding: 14px 48px;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 0.25em;
  color: #fff; text-decoration: none;
}
.logo span { color: var(--gold); }
nav.main-nav { display:flex; gap:28px; align-items:center; }
nav.main-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.2em;
  color: var(--text-3); text-decoration: none;
  text-transform: uppercase; transition: color 0.3s;
}
nav.main-nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #000 !important;
  padding: 11px 22px; font-weight: 700;
  letter-spacing: 0.2em !important;
}
.nav-cta:hover { background: var(--gold-light); }

/* ===== HERO — photo-grid + left headline + right floating reels ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: 140px 64px 80px;
  overflow: hidden;
}
/* Photo collage — scattered, overlapping, tilted */
.hero-collage {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(30,58,112,0.5), transparent 60%),
    radial-gradient(ellipse 70% 80% at 80% 70%, rgba(232,184,78,0.08), transparent 60%),
    linear-gradient(135deg, #060c1a 0%, #0c1830 50%, #060c1a 100%);
}
.collage-tile {
  position: absolute;
  background: linear-gradient(135deg, #13213c, #060c1a);
  border: 1px solid rgba(232,184,78,0.15);
  box-shadow: 0 20px 48px rgba(0,0,0,0.6);
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 10px 14px;
  overflow: hidden;
  transition: transform 0.5s, border-color 0.5s;
}
.collage-tile::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 40% 50%, rgba(232,184,78,0.12), transparent 60%),
    linear-gradient(135deg, rgba(30,58,112,0.4), transparent 70%),
    repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,0.015) 40px 41px);
}
.collage-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,12,26,0.85), transparent 50%);
}
.collage-tile:hover { transform: scale(1.04) rotate(0deg) !important; border-color: rgba(232,184,78,0.5); z-index:50; }
.collage-label {
  position: relative; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.2em; color: rgba(232,184,78,0.7);
  text-transform: uppercase; font-weight: 600;
}
.collage-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 0.2em; color: var(--gold);
  padding: 3px 8px; background: rgba(6,12,26,0.8);
  border: 1px solid rgba(232,184,78,0.4);
  text-transform: uppercase; font-weight: 700;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right,
      rgba(6,12,26,0.96) 0%,
      rgba(6,12,26,0.85) 30%,
      rgba(6,12,26,0.55) 60%,
      rgba(6,12,26,0.35) 100%),
    linear-gradient(to top, rgba(6,12,26,0.6), transparent 40%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.hero-left {}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.hero-eyebrow .line { width: 32px; height: 2px; background: var(--gold); }
.hero-eyebrow span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 2;
  color: var(--text-2); margin-bottom: 44px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  max-width: 460px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Right side: 2 reel cards + voice mini cards */
.hero-right { display: flex; flex-direction: column; gap: 20px; }
.hero-reels { display: flex; gap: 14px; justify-content: center; }
.reel-card {
  background: #0a0a0a;
  border: 1px solid rgba(200,169,110,0.25);
  width: 222px; flex-shrink: 0;
  box-shadow: 0 24px 56px rgba(0,0,0,0.7);
  transition: transform 0.4s;
}
.reel-card.c1 { transform: rotate(-2deg) translateY(-10px); }
.reel-card.c2 { transform: rotate(2deg) translateY(10px); }
.reel-card:hover { transform: rotate(0) translateY(-4px) scale(1.03); }
.reel-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid #161616;
}
.reel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.reel-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.1em; color: var(--text-3);
}
.reel-video {
  position: relative;
  aspect-ratio: 9/16;
  background: linear-gradient(135deg, #1a1a1a, #080808);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.reel-video::after {
  content: '▶';
  font-size: 32px; color: rgba(255,255,255,0.15);
}
.reel-video-label {
  position: absolute; bottom: 10px; left: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 0.15em; color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
.reel-footer {
  padding: 9px 12px;
  display: flex; justify-content: space-between; align-items: center;
  background: #0a0a0a; border-top: 1px solid #161616;
}
.reel-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 5px;
}
.reel-tag::before { content:'●'; font-size: 8px; }
.reel-tag.sell { color: var(--gold); }
.reel-tag.buy  { color: var(--green); }
.reel-label {
  font-size: 8px; color: #333;
  font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.15em;
}

.hero-voices { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.hv-item {
  background: rgba(13,13,13,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid #1a1a1a;
  border-left: 2px solid var(--gold);
  padding: 13px 16px;
  transition: border-color 0.3s, background 0.3s;
}
.hv-item.buy { border-left-color: var(--green); }
.hv-item:hover { background: rgba(20,20,20,0.85); }
.hv-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  display: block; margin-bottom: 6px;
}
.hv-tag.sell { color: var(--gold); }
.hv-tag.buy  { color: var(--green); }
.hv-text { font-size: 12px; color: #ccc; line-height: 1.7; margin-bottom: 4px; }
.hv-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.1em; color: #444;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 0.3em; color: #555;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SOLD MARQUEE (dual row with photo cards) ===== */
.sec-sold {
  padding: 64px 0 72px;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.sold-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.4em; color: #3a3a3a;
  text-transform: uppercase; text-align: center;
  margin-bottom: 28px;
}
.marquee-row { overflow: hidden; margin-bottom: 6px; }
.marquee-track {
  display: flex; gap: 6px;
  width: max-content; will-change: transform;
}
.marquee-row--left  .marquee-track { animation: mq-left 60s linear infinite; }
.marquee-row--right .marquee-track { animation: mq-right 70s linear infinite; }
@keyframes mq-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mq-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-row:hover .marquee-track { animation-play-state: paused; }

.sold-card {
  position: relative; width: 300px; height: 200px;
  flex-shrink: 0; overflow: hidden;
  background: linear-gradient(135deg, #1c1c1c, #0a0a0a);
}
.sold-card-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px; letter-spacing: 0.15em; color: rgba(200,169,110,0.08);
  font-weight: 800;
}
.sold-card-ph::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,110,0.06), transparent 70%);
}
.sold-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}
.sold-car-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; color: #fff; letter-spacing: 0.08em;
}
.sold-badge {
  position: absolute; top: 10px; right: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  padding: 5px 11px; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
}
.sold-badge::before { content:''; width:5px; height:5px; border-radius:50%; }
.sold-badge.sell {
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.5);
  color: var(--gold);
}
.sold-badge.sell::before { background: var(--gold); }
.sold-badge.buy {
  background: rgba(78,202,122,0.12);
  border: 1px solid rgba(78,202,122,0.4);
  color: var(--green);
}
.sold-badge.buy::before { background: var(--green); }

/* ===== OWNER'S VOICE ===== */
.sec-voice { background: var(--dark); border-top: 1px solid var(--line); }
.voice-head { margin-bottom: 64px; }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 80px;
}
.voice-card {
  background: #0d0d0d;
  padding: 44px 36px;
  border-top: 2px solid transparent;
  transition: border-color 0.4s, background 0.3s;
  position: relative;
}
.voice-card:hover { border-top-color: var(--gold); background: #111; }
.voice-card.buy:hover { border-top-color: var(--green); }
.voice-tag {
  font-family: 'Barlow Condensed', sans-serif;
  display: inline-block;
  font-size: 10px; letter-spacing: 0.3em; font-weight: 700;
  padding: 4px 10px; margin-bottom: 20px;
  text-transform: uppercase;
}
.voice-tag.sold { background: rgba(200,169,110,0.12); color: var(--gold); }
.voice-tag.purchased { background: rgba(78,202,122,0.1); color: var(--green); }
.voice-q-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; color: rgba(255,255,255,0.05);
  line-height: 0.8; margin-bottom: 12px;
}
.voice-main {
  font-size: 18px; font-weight: 700; line-height: 1.6;
  color: #fff; margin-bottom: 20px;
}
.voice-body {
  font-size: 13px; color: var(--text-3); line-height: 2;
  margin-bottom: 28px;
}
.voice-meta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; color: #555; letter-spacing: 0.15em;
  border-top: 1px solid #1a1a1a; padding-top: 16px;
  line-height: 1.8;
}

/* Dialog video strip */
.danwa {
  border-top: 1px solid var(--line);
  padding-top: 64px;
}
.danwa-head { margin-bottom: 40px; }
.danwa-head h3 {
  font-size: clamp(22px, 3.2vw, 32px); font-weight: 700; color: #fff;
  line-height: 1.5; margin-bottom: 14px;
}
.danwa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.danwa-item {
  aspect-ratio: 9/14;
  background: linear-gradient(135deg, #141414, #080808);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.danwa-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.danwa-play {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.6);
  transition: border-color 0.3s, background 0.3s;
  margin-bottom: 16px;
}
.danwa-item:hover .danwa-play { border-color: var(--gold); background: rgba(200,169,110,0.1); color: var(--gold); }
.danwa-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.25em; color: #333;
  text-transform: uppercase;
}

/* ===== INSTAGRAM ===== */
.sec-ig { background: var(--black); }
.ig-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.ig-stat-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 96px); color: var(--gold);
  line-height: 0.95; letter-spacing: 0.02em;
}
.ig-stat-sub {
  font-size: 14px; color: var(--text-2); line-height: 1.9;
  margin-top: 12px;
}
.ig-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.ig-item {
  background: linear-gradient(135deg, #141414, #080808);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
}
.ig-item:hover { border-color: var(--gold); transform: scale(1.01); }
.ig-item.tall { grid-row: 1 / 3; }
.ig-item::after {
  content: '▶';
  font-size: 28px; color: rgba(255,255,255,0.15);
}
.ig-item.tall::after { font-size: 48px; }
.ig-item-label {
  position: absolute; bottom: 12px; left: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; letter-spacing: 0.25em; color: #333;
  text-transform: uppercase;
}
.ig-follow-row {
  margin-top: 36px;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.ig-handle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 600; letter-spacing: 0.1em; color: #fff;
}

/* ===== THE BOSS ===== */
.sec-boss { background: var(--dark); padding: 0; border-top: 1px solid var(--line); }
.boss-inner { display: grid; grid-template-columns: 1fr 1fr; }
.boss-photo {
  position: relative;
  min-height: 620px;
  background: linear-gradient(160deg, #151515, #080808);
  overflow: hidden;
}
.boss-photo::before {
  content: 'THE BOSS';
  position: absolute; top: 32px; left: 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px; color: rgba(255,255,255,0.03);
  letter-spacing: 0.08em; line-height: 1;
}
.boss-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 0.3em; color: rgba(255,255,255,0.15);
  text-transform: uppercase;
}
.boss-photo::after {
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.6), transparent 60%);
}
.boss-content {
  padding: 100px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.boss-body {
  font-size: 17px; font-weight: 300; line-height: 2.3;
  color: var(--text-2); margin-bottom: 36px;
}

/* ===== MARESYA (what is 稀車) ===== */
.sec-maresya { background: var(--black); border-top: 1px solid var(--line); overflow: hidden; }
.maresya-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.maresya-quote {
  font-size: clamp(44px, 6vw, 80px); font-weight: 700;
  line-height: 1.15; color: #fff; letter-spacing: 0.02em;
}
.maresya-quote .gold { color: var(--gold); }

/* ===== WHY ===== */
.sec-why { background: var(--dark); border-top: 1px solid var(--line); }
.why-tagline {
  font-size: 15px; color: var(--text-2); line-height: 1.9;
  padding-left: 24px; border-left: 3px solid var(--gold);
  max-width: 520px; margin-bottom: 56px;
  font-weight: 500;
}
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.why-card {
  background: #0d0d0d; padding: 48px 40px;
  border-top: 2px solid transparent;
  transition: border-color 0.4s, background 0.3s;
}
.why-card:hover { border-top-color: var(--gold); background: #111; }
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; color: rgba(200,169,110,0.15);
  line-height: 1; margin-bottom: 20px; letter-spacing: 0.05em;
}
.why-card h3 {
  font-size: 17px; font-weight: 700; color: #fff;
  line-height: 1.7; margin-bottom: 16px;
}
.why-card h3 .gold { color: var(--gold); }
.why-card p { font-size: 13px; color: var(--text-3); line-height: 2; }

/* ===== INVENTORY ===== */
.sec-inv { background: var(--black); border-top: 1px solid var(--line); }
.inv-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.inv-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.car-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: linear-gradient(135deg, #141414, #080808);
  transition: transform 0.3s;
}
.car-card.main { grid-column: 1; grid-row: 1 / 3; }
.car-card:hover { transform: translateY(-3px); }
.car-card-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.25em; color: rgba(200,169,110,0.1);
  text-transform: uppercase;
}
.car-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
}
.car-card.main .car-info { padding: 32px 36px; }
.car-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase; margin-bottom: 4px;
}
.car-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; color: #fff; letter-spacing: 0.05em;
  line-height: 1.1; margin-bottom: 6px;
}
.car-card.main .car-name { font-size: 42px; }
.car-spec {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; color: var(--text-3); letter-spacing: 0.1em;
}
.car-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px; color: var(--gold-light); letter-spacing: 0.05em;
  margin-top: 4px;
}
.car-card.main .car-price { font-size: 30px; }
.car-story {
  font-size: 12px; color: var(--text-2); line-height: 1.9;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: none;
}
.car-card.main .car-story { display: block; }
.badge-new {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: #000;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  padding: 5px 10px; text-transform: uppercase; z-index: 2;
}

/* ===== BUYBACK COMPARE ===== */
.sec-buyback { background: var(--dark); border-top: 1px solid var(--line); }
.buyback-head { text-align: center; margin-bottom: 56px; }
.buyback-head .sec-h2 em { font-style: normal; color: var(--gold); }
.buyback-grid {
  display: grid; grid-template-columns: 1fr 80px 1fr; gap: 0;
  max-width: 1100px; margin: 0 auto;
}
.bb-col { padding: 44px 40px; }
.bb-col.bad  { background: #140a0a; border: 1px solid #2a1212; }
.bb-col.good { background: #0a140d; border: 1px solid #123020; }
.bb-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase;
  margin-bottom: 14px; font-weight: 600;
}
.bad .bb-col-label  { color: #6a2828; }
.good .bb-col-label { color: #2a7040; }
.bb-col h3 {
  font-size: 20px; font-weight: 700; line-height: 1.5;
  margin-bottom: 32px;
}
.bad h3  { color: var(--red); }
.good h3 { color: var(--green); }
.bb-item {
  display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start;
}
.bb-icon {
  width: 24px; min-width: 24px; height: 24px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 2px;
}
.bad .bb-icon  { background: rgba(214,90,78,0.15); color: var(--red); }
.good .bb-icon { background: rgba(78,202,122,0.15); color: var(--green); }
.bb-text { font-size: 13px; color: var(--text-3); line-height: 1.8; }
.bb-text strong { color: #ddd; display: block; font-size: 14px; margin-bottom: 4px; }
.bb-divider {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
}
.vs-circle {
  width: 52px; height: 52px; border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; color: var(--gold); letter-spacing: 0.08em;
  background: var(--black);
}

/* ===== WRAPPING ===== */
.sec-wrap { background: var(--black); border-top: 1px solid var(--line); }
.wrap-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.wrap-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a0a00 0%, #141414 60%);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; letter-spacing: 0.3em; color: rgba(200,169,110,0.2);
  text-transform: uppercase;
  position: relative;
}
.wrap-visual::before {
  content: '';
  position: absolute; inset: 20px;
  border: 1px solid rgba(200,169,110,0.08);
}
.wrap-swatches { display: flex; gap: 10px; margin-top: 36px; flex-wrap: wrap; }
.swatch {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  transition: transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.swatch:hover { transform: scale(1.1); border-color: var(--gold); }

/* ===== APPRAISAL FORM ===== */
.sec-form { background: var(--dark); border-top: 1px solid var(--line); }
.form-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.form-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 60px); color: #fff;
  letter-spacing: 0.05em; line-height: 1.1; margin-bottom: 20px;
}
.form-text h2 .gold { color: var(--gold); }
.form-text > p {
  font-size: 15px; color: var(--text-2); line-height: 2.1; margin-bottom: 40px;
}
.form-steps { display: flex; flex-direction: column; }
.step-item {
  display: flex; gap: 24px; padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.step-item:first-child { padding-top: 0; }
.step-num-c {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--gold);
  min-width: 44px; line-height: 1; margin-top: 2px;
  letter-spacing: 0.05em;
}
.step-text strong {
  display: block; font-size: 15px; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.step-text span {
  font-size: 13px; color: var(--text-3); line-height: 1.9;
}
.appraisal-form {
  background: var(--panel); border: 1px solid var(--line);
  padding: 48px 44px; position: relative;
}
.appraisal-form::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.form-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.form-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; color: #555; letter-spacing: 0.2em;
  margin-bottom: 32px; text-transform: uppercase;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 0.3em; color: #666;
  text-transform: uppercase; margin-bottom: 8px; font-weight: 600;
}
.f-input, .f-textarea {
  width: 100%; background: #0a0a0a; border: 1px solid #222;
  padding: 14px 16px; font-size: 14px; color: #fff;
  font-family: 'Noto Sans JP', sans-serif; outline: none;
  transition: border-color 0.3s;
  border-radius: 0;
}
.f-input:focus, .f-textarea:focus { border-color: var(--gold); }
.f-input::placeholder, .f-textarea::placeholder { color: #333; }
.f-textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.form-story-note {
  font-size: 11px; color: #444; margin-top: 8px; line-height: 1.6;
}
.form-submit {
  width: 100%; background: var(--gold); color: #000; border: none;
  padding: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; cursor: pointer; margin-top: 8px;
  transition: background 0.3s, transform 0.2s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-foot {
  font-size: 11px; color: #444; text-align: center;
  margin-top: 16px; line-height: 1.8;
}

/* ===== LAST CTA ===== */
.sec-cta {
  background: var(--black);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 140px 64px;
  position: relative; overflow: hidden;
}
.sec-cta::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(200,169,110,0.08), transparent 70%);
}
.sec-cta > * { position: relative; z-index: 1; }
.sec-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 8vw, 88px);
  letter-spacing: 0.05em;
  color: #fff; margin-bottom: 24px; line-height: 1.05;
}
.sec-cta .lead { margin: 0 auto 48px; text-align: center; max-width: 420px; }

/* ===== FOOTER ===== */
footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 56px 64px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center;
  gap: 32px;
}
.f-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 0.25em; color: #fff;
}
.f-logo span { color: var(--gold); }
.f-center { text-align: center; font-size: 12px; color: #444; line-height: 2; }
.f-right { text-align: right; }
.f-ig {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 0.15em; color: var(--text-3);
  text-decoration: none; transition: color 0.3s;
}
.f-ig:hover { color: var(--gold); }
.f-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; color: #333; letter-spacing: 0.2em; margin-top: 8px;
  text-transform: uppercase;
}

@media(max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { max-width: 420px; }
  .inv-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .car-card.main { grid-column: 1 / 3; grid-row: 1; }
}

/* ========================================
   MOBILE (≤ 768px)
   ======================================== */
@media(max-width: 768px) {
  /* Global */
  html { font-size: 14px; }
  .wrap { padding: 0 20px !important; }
  section { padding: 60px 0 !important; }
  .sec-h2 { font-size: 32px !important; line-height: 1.25 !important; }
  .eyebrow { font-size: 10px !important; }
  .lead { font-size: 15px !important; }

  /* HEADER */
  #main-header {
    padding: 14px 20px !important;
    flex-wrap: wrap;
  }
  .logo { font-size: 22px !important; }
  .main-nav { display: none !important; }
  .main-nav.mobile-open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 58px; left: 0; right: 0;
    background: #060c1a;
    border-top: 1px solid rgba(200,169,110,0.15);
    padding: 20px;
    gap: 18px;
    z-index: 1000;
  }
  .main-nav.mobile-open a {
    font-size: 16px !important;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .mobile-menu-btn {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(200,169,110,0.3);
    padding: 10px;
    cursor: pointer;
    border-radius: 2px;
  }
  .mobile-menu-btn span {
    width: 22px; height: 2px; background: var(--gold);
    transition: all 0.25s;
  }
  .mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
  .mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* HERO */
  .hero { min-height: auto !important; padding: 90px 0 60px !important; }
  .hero-content { grid-template-columns: 1fr !important; gap: 32px !important; padding: 0 20px !important; }
  .hero h1 { font-size: 44px !important; line-height: 1.1 !important; }
  .hero-sub { font-size: 15px !important; }
  .hero-btns { flex-wrap: wrap; gap: 10px !important; }
  .hero-btns a { flex: 1; min-width: 140px; text-align: center; font-size: 13px !important; padding: 14px 18px !important; }
  .hero-tagline { font-size: 11px !important; }

  /* Hero collage — smaller and fewer tiles visible */
  .hero-collage { height: 380px !important; }
  .collage-tile { font-size: 10px !important; }
  .collage-label { font-size: 11px !important; }
  .collage-badge { font-size: 9px !important; padding: 3px 6px !important; }

  /* Hero reels */
  .hero-reels { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .reel-card { min-height: 220px; }
  .reel-handle { font-size: 10px !important; }

  .hero-voices { grid-template-columns: 1fr !important; gap: 10px !important; }

  /* INVENTORY */
  .inv-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 14px !important;
  }
  .car-card { grid-column: auto !important; grid-row: auto !important; min-height: 220px; }
  .car-card.main { grid-column: auto !important; grid-row: auto !important; min-height: 280px; }
  .inv-head { flex-direction: column; align-items: flex-start !important; gap: 16px; }
  .inv-filters { flex-wrap: wrap; gap: 8px !important; }
  .inv-filters button { font-size: 11px !important; padding: 8px 12px !important; }

  /* STATS / NUMBERS */
  .stats-grid, .numbers-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  .stat-num, .number-big { font-size: 48px !important; }

  /* WHY CY / FEATURES */
  .why-grid, .features-grid, .three-col, .four-col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* VOICE / TESTIMONIALS */
  .voice-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .voice-card { padding: 24px !important; }
  .voice-quote { font-size: 16px !important; }

  /* MARQUEE */
  .sold-card { min-width: 220px !important; }
  .sold-card-ph { height: 120px !important; font-size: 28px !important; }

  /* PROCESS / STEPS */
  .process-grid, .steps-grid { grid-template-columns: 1fr !important; }
  .step-item { gap: 16px !important; }
  .step-num-c { width: 48px !important; height: 48px !important; font-size: 16px !important; }

  /* WRAPPING */
  .wrap-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .wrap-visual { min-height: 240px; }
  .wrap-swatches { flex-wrap: wrap; gap: 10px !important; }
  .swatch { width: 44px !important; height: 44px !important; }

  /* FORM */
  .form-inner { grid-template-columns: 1fr !important; gap: 32px !important; }
  .form-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  input, select, textarea { font-size: 16px !important; } /* prevent iOS zoom */

  /* FOOTER */
  footer { padding: 50px 0 30px !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-brand { font-size: 32px !important; }

  /* Generic grid fallbacks */
  [class*="grid"]:not(.inv-grid):not(.hero-reels):not(.stats-grid):not(.numbers-grid) {
    grid-template-columns: 1fr !important;
  }
}

/* ========================================
   SMALL MOBILE (≤ 420px)
   ======================================== */
@media(max-width: 420px) {
  .hero h1 { font-size: 36px !important; }
  .sec-h2 { font-size: 26px !important; }
  .stat-num, .number-big { font-size: 40px !important; }
  .stats-grid, .numbers-grid { grid-template-columns: 1fr !important; }
  .hero-reels { grid-template-columns: 1fr !important; }
  .hero-collage { height: 320px !important; }
}

/* Default: hide mobile menu button on desktop */
.mobile-menu-btn { display: none; }

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.sticky-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta-inner {
  display: flex; align-items: center; gap: 14px;
  background: var(--gold); padding: 14px 22px 14px 16px;
  text-decoration: none; color: #000;
  box-shadow: 0 8px 40px rgba(232,184,78,0.45);
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.sticky-cta-inner:hover {
  background: var(--gold-light); transform: translateY(-3px);
  box-shadow: 0 14px 52px rgba(232,184,78,0.55);
}
.sticky-cta-icon {
  width: 38px; height: 38px; background: rgba(0,0,0,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sticky-cta-icon svg { width: 18px; height: 18px; }
.sticky-cta-main {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; display: block; color: #000;
}
.sticky-cta-sub {
  font-size: 11px; color: rgba(0,0,0,0.55); display: block;
  margin-top: 2px; letter-spacing: 0.03em;
}
@media (max-width: 768px) {
  .sticky-cta { bottom: 16px; right: 16px; left: 16px; }
  .sticky-cta-inner { justify-content: center; }
}

/* ===== REEL MUTE BUTTON ===== */
.reel-video:has(video)::after { display: none; }
.reel-mute-btn {
  position: absolute; bottom: 10px; right: 10px; z-index: 4;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; padding: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.reel-mute-btn:hover { background: rgba(200,169,110,0.3); border-color: var(--gold); transform: scale(1.1); }
.reel-mute-btn svg { width: 15px; height: 15px; pointer-events: none; }

@media(max-width: 1024px) { .reel-card { width: 190px; } }

/* ===== HERO LOAD ANIMATIONS ===== */
@keyframes cyg-fade-up {
  from { opacity: 0; transform: translateY(44px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cyg-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-eyebrow { animation: cyg-fade-up 0.85s cubic-bezier(0.16,1,0.3,1) 0.25s both; }
.hero h1      { animation: cyg-fade-up 0.95s cubic-bezier(0.16,1,0.3,1) 0.40s both; }
.hero-sub     { animation: cyg-fade-up 0.90s cubic-bezier(0.16,1,0.3,1) 0.55s both; }
.hero-btns    { animation: cyg-fade-up 0.90s cubic-bezier(0.16,1,0.3,1) 0.70s both; }
.hero-right   { animation: cyg-fade-up 0.95s cubic-bezier(0.16,1,0.3,1) 0.45s both; }
.hero-scroll  { animation: cyg-fade-in 1.2s ease 1.3s both; }

.collage-tile { animation: cyg-fade-in 1.1s ease both; }
.collage-tile:nth-child(1)  { animation-delay: 0.05s; }
.collage-tile:nth-child(2)  { animation-delay: 0.18s; }
.collage-tile:nth-child(3)  { animation-delay: 0.30s; }
.collage-tile:nth-child(4)  { animation-delay: 0.10s; }
.collage-tile:nth-child(5)  { animation-delay: 0.42s; }
.collage-tile:nth-child(6)  { animation-delay: 0.24s; }
.collage-tile:nth-child(7)  { animation-delay: 0.36s; }
.collage-tile:nth-child(8)  { animation-delay: 0.50s; }
.collage-tile:nth-child(9)  { animation-delay: 0.56s; }
.collage-tile:nth-child(10) { animation-delay: 0.08s; }

/* ===== SCROLL REVEAL ===== */
.sr {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.sr.sr--left  { transform: translateX(-36px); }
.sr.sr--right { transform: translateX(36px); }
.sr.sr--scale { transform: scale(0.93) translateY(20px); }
.sr.visible   { opacity: 1 !important; transform: none !important; }
.sr.sr--d1    { transition-delay: 0.08s; }
.sr.sr--d2    { transition-delay: 0.16s; }
.sr.sr--d3    { transition-delay: 0.26s; }
.sr.sr--d4    { transition-delay: 0.36s; }
.sr.sr--d5    { transition-delay: 0.46s; }

/* eyebrow の左ライン：左から伸びて入る */
.sr-eyebrow::before {
  transform-origin: left;
  transform: scaleX(0) !important;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s;
}
.sr-eyebrow.visible::before { transform: scaleX(1) !important; }

/* boss photo parallax セットアップ */
.boss-photo { transform-origin: center center; }

/* ===== MOBILE / REDUCED MOTION 無効化 ===== */
@media (max-width: 768px) {
  .sr { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sr-eyebrow::before { transform: scaleX(1) !important; transition: none !important; }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-btns,
  .hero-right, .hero-scroll, .collage-tile { animation: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .sr { opacity: 1 !important; transform: none !important; transition: none !important; }
  .sr-eyebrow::before { transform: scaleX(1) !important; transition: none !important; }
  .hero-eyebrow, .hero h1, .hero-sub, .hero-btns,
  .hero-right, .hero-scroll, .collage-tile { animation: none !important; }
}
