/**
 * FIREKIDS LP Common Styles
 * For EC-CUBE 4.x Integration
 */

:root {
  --color-primary: #8E1728;
  --color-primary-dark: #6d121f;
  --color-gold: #D4AF37;
  --color-black: #111111;
  --color-dark: #0a0a0a;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-800: #1f2937;
  --color-white: #ffffff;
  --color-bg-light: #F9F9F7;
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", serif !important;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
  padding-bottom: 50px;
}

/* Force Mincho on all elements (override EC-CUBE defaults) */
body *:not(.font-luxury) {
  font-family: inherit !important;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(142, 23, 40, 0.15);
  color: inherit;
}

.font-luxury { font-family: "Cormorant Garamond", serif; }

/* Hide EC-CUBE default header completely on LP pages */
.ec-layoutRole__header > *,
.ec-headerRole,
.ec-headerNaviRole,
.ec-headerSearch,
.ec-categoryNaviRole,
.ec-drawerRole {
  display: none !important;
}
.ec-layoutRole__header {
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

/* LP Header - firekids.jp style, non-sticky */
.lp-header {
  position: relative !important;
  display: flex !important;
  background: var(--color-primary) !important;
  padding: 0.75rem 2rem !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.lp-header a {
  text-decoration: none;
  display: inline-block;
  line-height: 0;
}
.lp-header .lp-header-logo-img {
  height: 32px;
  width: auto;
}
@media (max-width: 768px) {
  .lp-header {
    padding: 0.625rem 1rem;
  }
  .lp-header .lp-header-logo-img {
    height: 26px;
  }
}

/* Legacy header (unused) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 3rem;
  background: transparent;
  transition: all 0.3s;
  display: none;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
}
.header-inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3em;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  color: white;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--color-gold); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--color-primary-dark); }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #06C755;
  color: white;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-line:hover { background: #05b04c; }
.btn-line svg { width: 1rem; height: 1rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.8));
}
.hero-decoration-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: rgba(142, 23, 40, 0.1);
  border-radius: 50%;
  filter: blur(200px);
  transform: translate(50%, -50%);
}
.hero-decoration-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(150px);
  transform: translate(-50%, 50%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  color: var(--color-gold);
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
}
.hero-title {
  font-size: 4.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.hero-title .brand {
  background: linear-gradient(135deg, var(--color-gold), #E8C547);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 300;
  font-size: 5.5rem;
}
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
  letter-spacing: 0.025em;
  font-weight: 500;
}
.hero-subtitle .highlight { color: var(--color-gold); }
.hero-cta {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.hero-cta .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.hero-cta .btn-secondary {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.25rem;
  letter-spacing: 0.1em;
  transition: all 0.15s;
}
.hero-cta .btn-secondary:hover {
  color: white;
  border-color: white;
}
.hero-trust {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.95);
}
.trust-item svg { color: var(--color-gold); width: 1.5rem; height: 1.5rem; }
.trust-item span { font-size: 1.125rem; letter-spacing: 0.05em; font-weight: 500; }
.trust-item strong { color: var(--color-gold); font-weight: 700; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}
.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.5rem;
  background: rgba(255,255,255,0.5);
  border-radius: 9999px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
}

/* Lifestyle Section (cushion between Hero and content) */
.lifestyle-section {
  padding: 5rem 1.5rem 4rem;
  background: var(--color-bg-light);
  text-align: center;
}
.lifestyle-inner {
  max-width: 72rem;
  margin: 0 auto;
}
.lifestyle-lead {
  max-width: 40rem;
  margin: 0 auto 3rem;
  text-align: center !important;
}
.lifestyle-lead .section-label {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.lifestyle-lead h2 {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--color-black);
  text-align: center !important;
  letter-spacing: 0;
}
.lifestyle-lead p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--color-gray-600);
  text-align: center !important;
  letter-spacing: 0;
}
.lifestyle-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.lifestyle-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lifestyle-card:hover img {
  transform: scale(1.05);
}
.lifestyle-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}
.lifestyle-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  color: white;
  text-align: left;
}
.lifestyle-card-caption h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}
.lifestyle-card-caption p {
  font-size: 0.75rem;
  opacity: 0.85;
  line-height: 1.5;
}
.lifestyle-question {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  letter-spacing: 0;
  text-align: center !important;
}
.lifestyle-source {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.lifestyle-source a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-gray-500);
  text-decoration: none;
  transition: color 0.2s;
}
.lifestyle-source a:hover {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .lifestyle-section {
    padding: 3.5rem 1rem 3rem;
  }
  .lifestyle-lead h2 {
    font-size: 1.375rem;
  }
  .lifestyle-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .lifestyle-card:nth-child(3) {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }
  .lifestyle-card-caption {
    padding: 1rem;
  }
  .lifestyle-card-caption h3 {
    font-size: 0.8125rem;
  }
  .lifestyle-card-caption p {
    font-size: 0.6875rem;
  }
  .lifestyle-question {
    font-size: 1.25rem;
  }
  .lifestyle-source {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
}

/* Stats Bar */
.stats-bar {
  background: var(--color-black);
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-gray-800);
  border-bottom: 1px solid var(--color-gray-800);
}
.stats-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}
.stat-item .value {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-gold), #E8C547);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item .label {
  font-size: 10px;
  color: var(--color-gray-500);
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Section Common */
.section {
  padding: 7rem 3rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center !important;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 1.5rem;
  line-height: 1.4;
  text-align: center !important;
  letter-spacing: 0;
}
.section-desc {
  font-size: 1.1875rem;
  color: var(--color-gray-500);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 2;
  text-align: center !important;
  letter-spacing: 0;
}

/* Guide Section */
.guide-section { background: var(--color-bg-light); }
.guide-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.guide-card {
  background: white;
  padding: 2.5rem;
  border: 1px solid var(--color-gray-100);
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.guide-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(142, 23, 40, 0.3);
}
.guide-card .step-number {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 120px;
  font-weight: 700;
  color: var(--color-gray-100);
  line-height: 1;
  transform: translate(1rem, -2rem);
  user-select: none;
}
.guide-card .content { position: relative; z-index: 1; }
.guide-card .icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(142, 23, 40, 0.05);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.guide-card:hover .icon-wrap {
  background: var(--color-primary);
  color: white;
}
.guide-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
}
.guide-card p {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 2;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.guide-card .point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Why BRAND Section */
.why-section { background: white; }
.why-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-image {
  position: relative;
}
.why-image .glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to bottom right, rgba(212, 175, 55, 0.2), rgba(142, 23, 40, 0.2));
  filter: blur(40px);
}
.why-image img {
  position: relative;
  width: 100%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.why-image .price-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--color-black);
  color: white;
  padding: 1rem 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.why-image .price-badge .label {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  margin-bottom: 0.25rem;
}
.why-image .price-badge .price {
  font-size: 1.25rem;
  font-weight: 700;
}
.why-content .label {
  font-size: 1rem;
  color: var(--color-primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.why-content h2 {
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 2rem;
  line-height: 1.4;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.why-item {
  display: flex;
  gap: 1.5rem;
}
.why-item .num {
  font-size: 1.875rem;
  font-weight: 300;
  color: var(--color-gold);
  flex-shrink: 0;
}
.why-item h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}
.why-item:hover h3 { color: var(--color-primary); }
.why-item p {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 2;
  font-weight: 300;
}
.why-source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2rem;
  padding: 1.125rem 2.25rem;
  font-size: 0.9375rem;
  color: var(--color-primary);
  text-decoration: none;
  border: 1px solid var(--color-primary);
  transition: all 0.3s;
  white-space: nowrap;
}
.why-source-link:hover {
  background: var(--color-primary);
  color: white;
}
.why-source-link svg {
  transition: transform 0.3s;
}
.why-source-link:hover svg {
  transform: translate(2px, -2px);
}

/* Why Vintage Section */
.vintage-section { background: var(--color-bg-light); }
.vintage-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.vintage-card {
  background: white;
  padding: 0;
  border: 1px solid var(--color-gray-100);
  transition: all 0.3s;
  overflow: hidden;
}
.vintage-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.vintage-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.vintage-card:hover .vintage-card-img img {
  transform: scale(1.05);
}
.vintage-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(142, 23, 40, 0.3);
}
.vintage-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.75rem;
  padding: 1.25rem 1.5rem 0;
}
.vintage-card p {
  font-size: 0.9375rem;
  color: var(--color-gray-600);
  line-height: 1.8;
  font-weight: 300;
  padding: 0 1.5rem 1.5rem;
}
.vintage-cta {
  max-width: 72rem;
  margin: 3rem auto 0;
  background: var(--color-black);
  padding: 2.5rem;
  text-align: center;
}
.vintage-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  text-align: center !important;
  letter-spacing: 0;
}
.vintage-cta .highlight {
  color: var(--color-gold);
  font-weight: 700;
}
.vintage-cta .btn {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.3s;
}
.vintage-cta .btn:hover { background: var(--color-primary-dark); }

/* Products Section */
.products-section { background: var(--color-bg-light); }
.products-inner { max-width: 80rem; margin: 0 auto; }
.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.filter-btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-gray-200);
  background: white;
  color: var(--color-gray-600);
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.product-card {
  background: white;
  border: 1px solid var(--color-gray-100);
  overflow: hidden;
  transition: all 0.3s;
}
.product-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.product-card .image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-gray-100);
}
.product-card .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.product-card:hover .image-wrap img {
  transform: scale(1.05);
}
.product-card .image-wrap .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.product-card:hover .image-wrap .overlay {
  opacity: 1;
}
.product-card .image-wrap .overlay span {
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.75rem 1.5rem;
  border: 1px solid white;
  transition: all 0.3s;
}
.product-card:hover .image-wrap .overlay span {
  background: white;
  color: var(--color-black);
}
.product-card .badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-primary);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-card .wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}
.product-card .wishlist:hover { transform: scale(1.1); }
.product-card .info { padding: 1.5rem; }
.product-card .meta {
  font-size: 10px;
  color: var(--color-gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.product-card .name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-card .ref {
  font-size: 10px;
  color: var(--color-gray-400);
  margin-bottom: 0.75rem;
}
.product-card .price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-primary);
}
.product-card .price .tax {
  font-size: 10px;
  color: var(--color-gray-400);
  font-weight: 400;
  margin-left: 0.25rem;
}
.product-card .installment {
  font-size: 10px;
  color: var(--color-gray-400);
  margin-top: 0.25rem;
}
.products-more {
  text-align: center;
}
.products-more a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 2px solid var(--color-black);
  color: var(--color-black);
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}
.products-more a:hover {
  background: var(--color-black);
  color: white;
}

/* Model Navigation */
.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
.model-card {
  display: flex;
  align-items: center;
  padding: 1.75rem 2rem;
  background: white;
  border: 1px solid var(--color-gray-200);
  text-decoration: none;
  color: var(--color-black);
  transition: all 0.3s;
  gap: 1rem;
}
.model-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.model-card .model-info {
  flex: 1;
}
.model-card .model-name {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.model-card .model-name-jp {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gray-500);
  margin-top: 0.25rem;
}
.model-card .model-arrow svg {
  color: var(--color-gray-400);
  transition: all 0.3s;
}
.model-card:hover .model-arrow svg {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* Why Brand - Zigzag Layout */
.why-zigzag-section {
  background: white;
  padding: 7rem 0;
}
.why-zigzag-section .section-header {
  padding: 0 3rem;
  margin-bottom: 5rem;
}
.zigzag-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.zigzag-item:nth-child(even) .zigzag-image { order: -1; }
.zigzag-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem;
}
.zigzag-num {
  font-size: 4rem;
  font-weight: 300;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.zigzag-text h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.zigzag-text p {
  font-size: 1.125rem;
  color: var(--color-gray-600);
  line-height: 2;
  font-weight: 300;
}
.zigzag-image {
  position: relative;
  overflow: hidden;
  background: var(--color-gray-100);
}
.zigzag-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.zigzag-item:hover .zigzag-image img {
  transform: scale(1.03);
}
.zigzag-source {
  text-align: center;
  margin-top: 3rem;
  padding: 0 3rem;
}
.section-source {
  text-align: center;
  margin-top: 2.5rem;
}
.faq-source-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(142, 23, 40, 0.3);
  padding-bottom: 0.125rem;
  transition: all 0.3s;
}
.faq-source-link:hover {
  border-color: var(--color-primary);
}
.faq-source-link svg {
  transition: transform 0.3s;
}
.faq-source-link:hover svg {
  transform: translate(2px, -2px);
}

/* Model Navigation - Image Cards */
.model-grid-img {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
.model-card-img {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  color: white;
}
.model-card-img .model-card-bg {
  position: absolute;
  inset: 0;
  background: var(--color-gray-100);
}
.model-card-img .model-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.7s ease-out;
}
.model-card-img:hover .model-card-bg img {
  transform: scale(1.05);
}
.model-card-img .model-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.2) 100%);
  transition: background 0.3s;
}
.model-card-img:hover .model-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.15) 100%);
}
.model-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
}
.model-card-content .model-name {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.model-card-content .model-name-jp {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}
.model-card-content .model-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.25rem;
  transition: all 0.3s;
}
.model-card-img:hover .model-cta {
  color: white;
  border-color: white;
}

/* CTA Strip - Between Sections */
.cta-strip {
  background: var(--color-black);
  padding: 3.5rem 1.5rem;
  text-align: center !important;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}
.cta-strip::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}
.cta-strip-text {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
  text-align: center !important;
  letter-spacing: 0;
}
.cta-strip-text strong {
  color: var(--color-gold);
}
.cta-strip .btn-cta,
.cta-model-strip .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-primary);
  color: white;
  padding: 1.375rem 4rem;
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
  animation: purun 2s ease-in-out infinite;
}
.cta-strip .btn-cta:hover,
.cta-model-strip .btn-cta:hover {
  background: var(--color-primary-dark);
  transform: scale(1.02);
}
@keyframes purun {
  0%, 100% { transform: scale(1); }
  5% { transform: scale(1.05); }
  10% { transform: scale(0.97); }
  15% { transform: scale(1.02); }
  20% { transform: scale(1); }
}

/* Model CTA Cards */
.cta-model-strip {
  background: var(--color-black);
  padding: 3rem 1.5rem;
  text-align: center;
}
.cta-model-strip-title {
  font-size: 0.875rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}
.cta-model-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
.cta-model-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  transition: all 0.3s;
}
.cta-model-mini:hover {
  border-color: var(--color-primary);
  background: rgba(142, 23, 40, 0.1);
}
.cta-model-mini-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
}
.cta-model-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-model-mini-name {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}
.cta-model-mini-arrow {
  font-size: 0.65rem;
  color: var(--color-gold);
}

/* Video Section - Full Width Immersive */
.video-featured {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1.5rem;
}
.video-featured .video-card-hero {
  display: block;
  text-decoration: none;
  position: relative;
}
.video-featured .video-thumbnail-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: #000;
}
.video-featured .video-thumbnail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.5s;
}
.video-featured .video-card-hero:hover .video-thumbnail-hero img {
  opacity: 0.85;
}
.video-featured .video-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.video-featured .video-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 5rem;
  z-index: 2;
}
.video-hero-content .video-hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.video-hero-content .video-hero-title {
  font-size: 2rem;
  font-weight: 500;
  color: white;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}
.video-hero-content .video-hero-play {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.video-hero-play .play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.video-card-hero:hover .play-circle {
  transform: scale(1.1);
  background: var(--color-primary-dark);
}
.video-hero-duration {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 0.375rem 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}
/* Sub videos */
.video-sub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 100%;
  padding: 0 3rem;
}
.video-sub-card {
  display: flex;
  gap: 1.25rem;
  text-decoration: none;
  align-items: center;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}
.video-sub-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(142, 23, 40, 0.5);
}
.video-sub-thumb {
  position: relative;
  width: 200px;
  min-width: 200px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}
.video-sub-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.video-sub-card:hover .video-sub-thumb img { opacity: 1; }
.video-sub-thumb .play-icon-sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: rgba(142, 23, 40, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-sub-thumb .video-duration {
  position: absolute;
  bottom: 0.35rem;
  right: 0.35rem;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 0.15rem 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.video-sub-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.video-sub-info .video-title {
  color: white;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}
.video-sub-info .video-watch {
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

/* Video Carousel (legacy - OMEGA/ROLEX) */
.video-carousel-wrapper {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 3rem;
}
.video-carousel {
  overflow: hidden;
}
.video-carousel-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}
.video-carousel-track .video-card {
  min-width: calc(50% - 1rem);
  flex-shrink: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

/* Trust Section */
.trust-section {
  background: var(--color-black);
  color: white;
}
.trust-section .section-label { color: var(--color-gold); }
.trust-section .section-title { color: white; }
.trust-section .section-title .accent { color: var(--color-primary); }
.trust-section .section-desc { color: var(--color-gray-400); }
.trust-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust-card {
  background: #1a1a1a;
  padding: 2rem;
  border: 1px solid var(--color-gray-800);
  transition: all 0.3s;
}
.trust-card:hover { border-color: rgba(142, 23, 40, 0.5); }
.trust-card .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(142, 23, 40, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.trust-card:hover .icon-wrap {
  background: var(--color-primary);
  color: white;
}
.trust-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.trust-card p {
  font-size: 1rem;
  color: var(--color-gray-400);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.trust-card .note {
  font-size: 10px;
  color: var(--color-gray-600);
  border-top: 1px solid var(--color-gray-800);
  padding-top: 0.75rem;
}

/* FAQ Section */
.faq-section { background: white; }
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-gray-200);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}
.faq-question .q-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-right: 2rem;
}
.faq-question .q-mark {
  color: var(--color-gold);
  font-style: italic;
  font-size: 1.5rem;
}
.faq-question .q-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
  transition: color 0.15s;
}
.faq-question:hover .q-text { color: var(--color-primary); }
.faq-question .icon-wrap {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--color-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-question:hover .icon-wrap { border-color: var(--color-primary); }
.faq-question .icon-wrap svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-gray-400);
  transition: all 0.3s;
}
.faq-question:hover .icon-wrap svg { color: var(--color-primary); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.3s ease;
}
.faq-answer.open {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-answer .a-wrap {
  display: flex;
  gap: 1rem;
  padding-left: 0.25rem;
}
.faq-answer .a-mark {
  color: var(--color-gray-300);
  font-style: italic;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.faq-answer p {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 2;
  font-weight: 300;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(to bottom right, var(--color-black), #1a1a1a);
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-decoration-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(142, 23, 40, 0.1);
  border-radius: 50%;
  filter: blur(150px);
}
.cta-decoration-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}
.cta-content {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center !important;
}
.cta-content .label {
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-align: center !important;
}
.cta-content h2 {
  font-size: 2.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  text-align: center !important;
  letter-spacing: 0;
}
.cta-content p {
  color: var(--color-gray-400);
  font-size: 1.1875rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 2;
  text-align: center !important;
  letter-spacing: 0;
}
.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.cta-buttons .btn-primary {
  padding: 1.375rem 3.5rem;
  font-size: 1.1875rem;
}
.cta-buttons .btn-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid #06C755;
  color: #06C755;
  padding: 1.375rem 3rem;
  font-size: 1.1875rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: all 0.3s;
}
.cta-buttons .btn-line:hover {
  background: #06C755;
  color: white;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: var(--color-gray-400);
  padding: 5rem 3rem;
}
.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer-brand .tagline {
  font-size: 10px;
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}
.footer-brand .address {
  font-size: 0.75rem;
  line-height: 2;
  color: var(--color-gray-500);
}
.footer-nav h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-nav a {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--color-gold); }
.footer-contact h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-contact .links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-gray-400);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-contact a:hover { color: var(--color-gold); }
.footer-contact a.line:hover { color: #06C755; }
.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 10px;
  color: var(--color-gray-600);
}

/* Price Guide Section */
.price-guide-section {
  background: white;
}
.price-guide-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.price-tier-card {
  background: var(--color-bg-light);
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  transition: all 0.3s;
}
.price-tier-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: rgba(142, 23, 40, 0.3);
}
.price-tier-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-gray-100);
}
.price-tier-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.price-tier-card:hover .price-tier-img img {
  transform: scale(1.05);
}
.price-tier-body {
  padding: 2rem;
}
.price-tier-range {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 0.375rem 1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.price-tier-body h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.75rem;
}
.price-tier-body p {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1rem;
}
.price-tier-models {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.price-tier-models a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  background: rgba(142, 23, 40, 0.05);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.price-tier-models a::after {
  content: '→';
  font-size: 0.9em;
  transition: transform 0.3s ease;
}
.price-tier-models a:hover {
  background: var(--color-primary);
  color: #fff;
}
.price-tier-models a:hover::after {
  transform: translateX(3px);
}
.price-tier-models .btn-view-products {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
.price-tier-models .btn-view-products:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Checklist Section */
.checklist-section {
  background: var(--color-bg-light);
}
.checklist-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.checklist-card {
  background: white;
  padding: 2.5rem;
  border: 1px solid var(--color-gray-100);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: all 0.3s;
  min-height: 0;
}
.checklist-content {
  flex: 1;
}
.checklist-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: rgba(142, 23, 40, 0.3);
}
.checklist-num {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.checklist-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 0.75rem;
}
.checklist-content p {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 1.9;
  font-weight: 300;
}
.checklist-tip {
  max-width: 72rem;
  margin: 2.5rem auto 0;
  background: var(--color-black);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.checklist-tip-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.checklist-tip p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}
.checklist-tip strong {
  color: var(--color-gold);
}

/* Checklist Card with Background Image */
.checklist-card-visual {
  position: relative;
  background-size: cover;
  background-position: center;
  border: none;
}
.checklist-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.93), rgba(255,255,255,0.87));
  transition: background 0.3s;
}
.checklist-card-visual:hover::after {
  background: linear-gradient(135deg, rgba(255,255,255,0.89), rgba(255,255,255,0.82));
}
.checklist-card-visual .checklist-num,
.checklist-card-visual .checklist-content {
  position: relative;
  z-index: 1;
}

/* Hero Particle Canvas */
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.hero:hover .hero-particles-canvas {
  pointer-events: auto;
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Video Section */
.video-section {
  background: var(--color-dark);
  color: white;
}
.video-section .section-label { color: var(--color-gold); }
.video-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.video-card {
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.3s;
}
.video-card:hover {
  transform: translateY(-4px);
}
.video-thumbnail {
  position: relative;
  width: 100% !important;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--color-gray-800);
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.video-card:hover .video-thumbnail img {
  opacity: 1;
}
.video-card:hover .video-thumbnail {
  border-color: var(--color-primary);
}
.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(142, 23, 40, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.video-card:hover .play-icon {
  background: var(--color-primary);
}
.video-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.video-title {
  color: white !important;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
  padding: 0 0.25rem;
  display: block !important;
}

/* Card hover lift effect */
.guide-card:hover,
.vintage-card:hover,
.price-tier-card:hover,
.checklist-card:hover,
.trust-card:hover {
  transform: translateY(-3px);
}

/* Focus visible states */
.btn-primary:focus-visible,
.btn-line:focus-visible,
.faq-question:focus-visible,
.filter-btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
  .guide-grid, .vintage-grid, .trust-grid, .product-grid, .video-grid, .price-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .model-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid-img { grid-template-columns: repeat(2, 1fr); }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .why-image { order: 2; }
  .why-content { order: 1; }
  .zigzag-item {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 450px;
  }
  .zigzag-text,
  .zigzag-image {
    grid-row: 1;
    grid-column: 1;
  }
  .zigzag-image { min-height: unset; }
  .zigzag-item:nth-child(even) .zigzag-image { order: 0; }
  .zigzag-text {
    position: relative;
    z-index: 2;
    padding: 3rem;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.15) 100%);
  }
  .zigzag-text h3 { color: white; }
  .zigzag-text p { color: rgba(255,255,255,0.8); }
  .video-carousel-track .video-card {
    min-width: calc(50% - 1rem);
  }
}
@media (max-width: 768px) {
  .hero-title { font-size: 2.25rem; letter-spacing: 0 !important; }
  .hero-title .brand { font-size: 2.75rem; }
  .section { padding: 4rem 1.25rem; }
  .section-title { font-size: 1.5rem; letter-spacing: 0 !important; }
  .section-label { letter-spacing: 0.15em; }
  .section-desc { letter-spacing: 0 !important; }
  .guide-grid, .vintage-grid, .trust-grid, .product-grid, .video-grid, .price-guide-grid {
    grid-template-columns: 1fr;
  }
  .model-grid { grid-template-columns: 1fr; }
  .model-grid-img { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .model-card-img { aspect-ratio: 4/5; }
  .model-card-content { padding: 0.75rem; }
  .model-card-content .model-name { font-size: 0.8rem; letter-spacing: 0.03em; }
  .model-card-content .model-name-jp { font-size: 0.625rem; margin-bottom: 0.35rem; }
  .model-card-content .model-cta { font-size: 0.65rem; gap: 0.25rem; }
  .zigzag-item {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    min-height: 420px;
  }
  .zigzag-text,
  .zigzag-image {
    grid-row: 1;
    grid-column: 1;
  }
  .zigzag-image { min-height: unset; }
  .zigzag-text {
    position: relative;
    z-index: 2;
    padding: 2rem 1.5rem;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.2) 100%);
  }
  .zigzag-text h3 { font-size: 1.5rem; color: white; }
  .zigzag-text p { color: rgba(255,255,255,0.8); }
  .zigzag-num { font-size: 3rem; color: var(--color-gold); }
  .zigzag-item:nth-child(even) .zigzag-image { order: 0; }
  /* Video full-width mobile */
  .video-featured .video-thumbnail-hero { aspect-ratio: 16/9; }
  .video-featured .video-hero-content { padding: 2rem 1.5rem; }
  .video-hero-content .video-hero-title { font-size: 1.25rem; }
  .video-sub-grid { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .video-sub-thumb { width: 140px; min-width: 140px; }
  /* CTA strips mobile */
  .cta-strip { padding: 2.5rem 1.5rem; text-align: center !important; }
  .cta-strip-text { font-size: 0.9375rem; letter-spacing: 0 !important; text-align: center !important; }
  .cta-strip .btn-cta,
  .cta-model-strip .btn-cta { padding: 1rem 2.25rem; font-size: 0.9375rem; width: 100%; justify-content: center; }
  .cta-model-strip { padding: 2.5rem 1rem; }
  .cta-model-row { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
  .cta-model-mini { padding: 0.5rem 0.25rem; }
  .cta-model-mini-img { width: 44px; height: 44px; }
  .cta-model-mini-name { font-size: 0.6rem; }
  /* Legacy carousel mobile */
  .video-carousel-track .video-card {
    min-width: calc(85%);
  }
  .carousel-btn { display: none; }
  .video-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .video-carousel-track .video-card { scroll-snap-align: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .checklist-grid { grid-template-columns: 1fr; }
  .checklist-card { padding: 1.75rem; min-height: 0; }
  .checklist-content h3 { font-size: 1.125rem; }
  .checklist-content p { font-size: 0.9375rem; }
  .checklist-tip { flex-direction: column; text-align: center; padding: 1.75rem; }
  .why-content h2 { font-size: 1.5rem; }
  .cta-content h2 { font-size: 1.625rem; }
  /* Source link: allow wrapping on mobile */
  .why-source-link {
    white-space: normal;
    padding: 0.875rem 1.25rem;
    font-size: 0.8125rem;
    text-align: left;
  }
  /* Hide decorative <br> on mobile to prevent 1-char lines */
  .section-desc br,
  .section-header p br,
  .cta-content p br,
  .price-tier-body p br,
  .checklist-content p br,
  .why-item p br,
  .faq-answer p br { display: none; }
  /* Keep intentional <br> in these elements */
  .section-title br,
  .cta-strip-text br,
  .cta-content h2 br,
  .hero-subtitle br { display: inline; }
  /* Japanese text line breaking */
  .hero-subtitle,
  .section-desc,
  .cta-strip-text,
  .cta-content p,
  .vintage-cta p,
  .price-tier-body p,
  .why-item p,
  .faq-answer p {
    word-break: normal;
    line-break: normal;
    overflow-wrap: break-word;
  }
  /* Prevent breaking key phrases */
  .trust-item,
  .trust-badge,
  .hero-split-trust .trust-item {
    white-space: nowrap;
  }
  .nav { display: none; }
  /* Hero CTA & Footer CTA: stack buttons vertically on mobile */
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-cta .btn-primary {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-line {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }
  /* Reduce hero subtitle on mobile */
  .hero-subtitle { font-size: 0.9375rem; line-height: 1.8; letter-spacing: 0 !important; }
  /* Section desc slightly smaller */
  .section-desc { font-size: 0.9375rem; letter-spacing: 0 !important; }
  /* CTA section text adjustments for mobile */
  .cta-content h2 { font-size: 1.5rem; letter-spacing: 0 !important; }
  .cta-content p { font-size: 0.9375rem; letter-spacing: 0 !important; }
  .cta-content .label { letter-spacing: 0.1em; }
  /* Why item text on mobile */
  .why-item p { font-size: 0.9375rem; }
  .why-item .num { font-size: 1.5rem; }
  .why-item { gap: 1rem; }
  /* Price tier card text on mobile */
  .price-tier-body { padding: 1.5rem; }
  .price-tier-body h3 { font-size: 1.1875rem; }
  .price-tier-body p { font-size: 0.9375rem; }
  /* Header padding on mobile */
  .header { padding: 0.75rem 1rem; }
  /* Stats bar on mobile */
  .stats-inner { gap: 1.5rem; }
  .stat-item .value { font-size: 1.5rem; }
  /* Checklist card on mobile */
  .checklist-card-visual { min-height: 0; }
  /* Trust section cards on mobile */
  .trust-card { padding: 1.5rem; }
  .trust-card p { font-size: 0.9375rem; }
  /* Footer on mobile */
  .footer { padding: 3rem 1.5rem; }
  /* CTA trust badges stack on mobile */
  .cta-trust-badges {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  .cta-trust-badges .trust-badge {
    font-size: 0.9rem;
  }
  /* Stats bar scroll prevention */
  .stats-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-item {
    min-width: auto;
    flex: 0 0 auto;
  }
  /* Section containers overflow prevention */
  .section,
  .cta-section,
  .cta-strip {
    overflow: hidden;
  }
  /* Long text word breaking */
  h1, h2, h3, h4, p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Sticky CTA Bar */
.mobile-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
  padding: 0.4rem 0.75rem;
  gap: 0.5rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-cta .cta-line {
  background: #06C755;
  color: white;
}
.mobile-cta .cta-store {
  background: var(--color-primary);
  color: white;
}
.mobile-cta svg {
  width: 1.1rem;
  height: 1.1rem;
}

/* Mobile CTA - Full Width Store Button */
.mobile-cta .cta-store-full {
  flex-direction: row;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
}
.mobile-cta .cta-store-full span:first-of-type {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8rem;
}
.mobile-cta .mobile-cta-badge {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

/* CTA Trust Badges */
.cta-trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.cta-trust-badges .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
}
.cta-trust-badges .trust-badge strong {
  color: var(--color-gold);
  font-weight: 700;
}
@media (max-width: 768px) {
  .cta-trust-badges {
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  .cta-trust-badges .trust-badge {
    font-size: 0.875rem;
  }
}

/* ====================================
   Hero Split Layout (Image Top / Text Bottom)
   ==================================== */
.hero-split {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-dark);
}

/* Hero Image Area - Top */
.hero-split-image {
  position: relative;
  flex: 0 0 auto;
  height: 70vh;
  height: 70dvh;
  overflow: hidden;
  background: var(--color-dark);
}
.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.hero-split-image .hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(10,10,10,0.7) 70%, rgba(10,10,10,1) 100%);
  box-shadow: inset 0 0 80px 40px rgba(10,10,10,1);
  pointer-events: none;
}

/* Hero Content Area - Bottom */
.hero-split-content {
  position: relative;
  z-index: 10;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem 2rem 1.5rem;
  margin-top: -2.5rem;
  text-align: center !important;
  background: var(--color-dark);
}
.hero-split-content .hero-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-align: center !important;
  letter-spacing: 0;
}
.hero-split-content .hero-title .brand {
  background: linear-gradient(135deg, var(--color-gold), #E8C547);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 300;
  font-size: 3rem;
}
.hero-split-content .hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  font-weight: 500;
  text-align: center !important;
  letter-spacing: 0;
}
.hero-split-content .hero-cta {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.hero-split-content .hero-cta .btn-primary {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.hero-split-content .hero-cta .btn-secondary {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.25rem;
  letter-spacing: 0.1em;
  transition: all 0.15s;
}
.hero-split-content .hero-cta .btn-secondary:hover {
  color: white;
  border-color: white;
}

/* Hero Trust Badges */
.hero-split-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.hero-split-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.95);
  font-size: 1.1875rem;
  font-weight: 500;
}
.hero-split-trust .trust-item svg {
  color: var(--color-gold);
  width: 1.5rem;
  height: 1.5rem;
}
.hero-split-trust .trust-item strong {
  color: var(--color-gold);
  font-weight: 700;
}

/* Scroll Indicator for Split Hero */
.hero-split .scroll-indicator {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

/* Responsive - Hero Split */
@media (max-width: 1024px) {
  .hero-split-content .hero-title {
    font-size: 2.5rem;
  }
  .hero-split-content .hero-title .brand {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero-split {
    min-height: auto;
  }
  .hero-split-image {
    height: 52vh;
    height: 52dvh;
  }
  .hero-split-content {
    padding: 0.75rem 1.25rem 1rem;
  }
  .hero-split-content .hero-title {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    letter-spacing: 0 !important;
  }
  .hero-split-content .hero-title .brand {
    font-size: 2rem;
  }
  .hero-split-content .hero-title br {
    display: inline;
  }
  .hero-split-content .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
    letter-spacing: 0 !important;
  }
  .hero-split-content .hero-subtitle br {
    display: inline;
  }
  .hero-split-content .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .hero-split-content .hero-cta .btn-primary {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
    font-size: 0.9375rem;
    padding: 0.875rem 2rem;
  }
  .hero-split-content .hero-cta .btn-secondary {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
  .hero-split-trust {
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
    margin-top: 0.75rem;
  }
  .hero-split-trust .trust-item {
    font-size: 0.875rem;
  }
  .hero-split-trust .trust-item span {
    letter-spacing: 0;
  }
}

/* iPhone SE (375px) specific adjustments */
@media (max-width: 375px) {
  .hero-split-content .hero-title {
    font-size: 1.375rem;
  }
  .hero-split-content .hero-title .brand {
    font-size: 1.75rem;
  }
  .hero-split-content .hero-subtitle {
    font-size: 0.8125rem;
  }
  .section { padding: 3.5rem 1rem; }
  .section-title { font-size: 1.375rem; }
  .section-desc { font-size: 0.875rem; }
  .cta-strip { padding: 2rem 1rem; }
  .cta-strip-text { font-size: 0.875rem; }
  .cta-strip .btn-cta,
  .cta-model-strip .btn-cta { padding: 0.875rem 1.5rem; font-size: 0.8125rem; }
  .lifestyle-lead h2 { font-size: 1.375rem; }
  .lifestyle-lead p { font-size: 0.8125rem; }
  .lifestyle-question { font-size: 1.25rem; }
  .cta-content h2 { font-size: 1.375rem; }
  .cta-content p { font-size: 0.875rem; }
}
