/* === Rolex Compare Lab — Magazine Edition === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

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

:root {
  --navy: #0a1628;
  --navy-dark: #050e18;
  --navy-light: #13243d;
  --gold: #c8a84e;
  --gold-hover: #b89432;
  --red: #b71c1c;
  --bg: #f3f4f6;
  --white: #ffffff;
  --text: #2a2a2a;
  --text-light: #888;
  --border: #e2e3e5;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP","Hiragino Sans",sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.8; font-size: 14px; font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* Fade-in */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Header */
.header {
  background: rgba(5,14,24,0.96); backdrop-filter: blur(16px);
  color: white; position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(200,168,78,0.15);
}
.header-inner { max-width: 1280px; margin: 0 auto; padding: 0 28px; display: flex; justify-content: space-between; align-items: center; height: 72px; gap: 24px; }
.logo { font-family: "Noto Serif JP",serif; font-size: 16px; font-weight: 700; letter-spacing: 3px; white-space: nowrap; }
.logo-main { font-family: "Noto Serif JP",serif; font-size: 16px; font-weight: 700; letter-spacing: 2px; color: white; }
.logo-sub { font-size: 10px; letter-spacing: 3px; color: var(--gold); font-weight: 500; }
.search-box { display: flex; flex: 1; max-width: 300px; }
.search-box input { padding: 8px 14px; border: 1px solid rgba(255,255,255,0.12); border-radius: 3px 0 0 3px; background: rgba(255,255,255,0.06); color: white; width: 100%; font-size: 13px; outline: none; }
.search-box input::placeholder { color: rgba(255,255,255,0.3); }
.search-box button { padding: 8px 20px; background: var(--gold); color: white; border: none; border-radius: 0 3px 3px 0; cursor: pointer; font-size: 13px; white-space: nowrap; }
.search-box button:hover { background: var(--gold-hover); }
nav { display: flex; gap: 24px; }
nav a { color: rgba(255,255,255,0.6); font-size: 12px; letter-spacing: 2px; transition: color 0.2s; white-space: nowrap; font-weight: 500; }
nav a:hover { color: var(--gold); }

/* Hero — Full Width */
.hero-full {
  position: relative; min-height: 520px;
  background: url('../images/genuine/submariner-genuine.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,14,24,0.7) 0%, rgba(5,14,24,0.85) 100%);
}
.hero-content { position: relative; text-align: center; color: white; padding: 0 24px; max-width: 800px; }
.hero-label { font-size: 10px; letter-spacing: 6px; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.hero-full h1 { font-family: "Noto Serif JP",serif; font-size: 48px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.hero-full h1 span { color: var(--gold); }
.hero-full p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 32px; font-weight: 300; }
.hero-stats { display: flex; justify-content: center; gap: 56px; }
.hero-stats .stat { text-align: center; }
.hero-stats .num { font-family: "Noto Serif JP",serif; font-size: 32px; font-weight: 700; color: var(--gold); display: block; }
.hero-stats .label { font-size: 10px; color: rgba(255,255,255,0.35); letter-spacing: 3px; text-transform: uppercase; }

/* Sections */
.section { max-width: 1280px; margin: 48px auto; padding: 0 28px; }
.section-dark { background: var(--navy); padding: 48px 0; margin: 0; }
.section-dark .section { margin: 0 auto; }
.section-title {
  font-family: "Noto Serif JP",serif; font-size: 22px; font-weight: 600;
  color: var(--navy); margin-bottom: 24px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,168,78,0.25); letter-spacing: 2px;
}
.section-title.light { color: white; border-bottom-color: rgba(200,168,78,0.2); }
.section-title::before { content: "◆"; color: var(--gold); font-size: 8px; margin-right: 10px; }

/* Featured Grid */
.featured-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.featured-card {
  position: relative; overflow: hidden; border-radius: 8px; min-height: 320px; display: block;
}
.featured-card.main { min-height: 360px; }
.featured-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.5s; }
.featured-card:hover img { transform: scale(1.04); }
.featured-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: white;
}
.featured-text h2 { font-family: "Noto Serif JP",serif; font-size: 20px; margin: 8px 0 4px; line-height: 1.3; }
.featured-text p { font-size: 12px; color: rgba(255,255,255,0.6); margin: 0; }
.tag-featured {
  display: inline-block; background: var(--gold); color: var(--navy-dark);
  padding: 3px 10px; border-radius: 2px; font-size: 10px; font-weight: 700; letter-spacing: 2px;
}

/* Magazine Grid */
.magazine-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px;
}
.mag-card { background: var(--white); border-radius: 6px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.mag-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.10); }
.mag-img { height: 220px; overflow: hidden; }
.mag-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.mag-card:hover .mag-img img { transform: scale(1.05); }
.mag-body { padding: 16px; }
.mag-body h3 { font-family: "Noto Serif JP",serif; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.mag-ref { font-size: 11px; color: var(--text-light); letter-spacing: 0.5px; }

/* Parts Grid */
.parts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: 6px; overflow: hidden; }
.parts-item {
  background: var(--white); padding: 24px 16px; text-align: center; font-size: 13px;
  color: var(--navy); transition: all 0.25s; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.parts-item span { font-family: "Noto Serif JP",serif; font-size: 18px; color: var(--gold); font-weight: 700; }
.parts-item:hover { background: #faf8f1; color: var(--gold); }

/* CTA */
.cta {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  color: white; text-align: center; padding: 48px 24px; margin-top: 32px;
}
.cta h2 { font-family: "Noto Serif JP",serif; font-size: 22px; margin-bottom: 10px; font-weight: 600; }
.cta p { color: rgba(255,255,255,0.5); margin-bottom: 20px; font-size: 14px; font-weight: 300; }

/* CTA Full */
.cta-full {
  background: linear-gradient(180deg, var(--navy-dark), var(--navy));
  padding: 64px 24px; text-align: center; margin-top: 48px;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-full h2 { font-family: "Noto Serif JP",serif; font-size: 28px; color: white; margin-bottom: 12px; line-height: 1.4; }
.cta-full p { color: rgba(255,255,255,0.45); margin-bottom: 24px; font-size: 14px; }
.cta-btn {
  display: inline-block; padding: 14px 40px; background: var(--gold); color: white;
  border-radius: 4px; font-size: 15px; font-weight: 600; letter-spacing: 1px;
  transition: all 0.25s;
}
.cta-btn:hover { background: var(--gold-hover); transform: translateY(-2px); }

/* Footer */
.footer { background: var(--navy-dark); color: var(--text-light); padding: 56px 28px 32px; font-size: 12px; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-col { min-width: 160px; }
.footer h4 { color: rgba(255,255,255,0.4); margin-bottom: 14px; font-size: 10px; letter-spacing: 3px; }
.footer a { color: rgba(255,255,255,0.3); display: block; margin-bottom: 8px; font-size: 11px; transition: color 0.2s; }
.footer a:hover { color: var(--gold); }
.footer-disclaimer { max-width: 1280px; margin: 36px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 10px; color: rgba(255,255,255,0.2); }

/* Cookie */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 14px 24px; display: flex; justify-content: center; align-items: center; gap: 20px; font-size: 12px; z-index: 1000; }
.cookie-banner button { padding: 7px 20px; background: var(--gold); color: white; border: none; border-radius: 3px; cursor: pointer; font-size: 12px; }

/* Article (unchanged) */
.article { max-width: 820px; margin: 40px auto; padding: 0 24px; }
.article h1 { font-family: "Noto Serif JP",serif; font-size: 30px; color: var(--navy); margin-bottom: 12px; line-height: 1.4; font-weight: 700; }
.article .meta { font-size: 11px; color: var(--text-light); margin-bottom: 28px; }
.article .meta span { margin-right: 20px; }
.article h2 { font-family: "Noto Serif JP",serif; font-size: 20px; color: var(--navy); margin: 36px 0 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(200,168,78,0.25); font-weight: 600; }
.article h3 { font-size: 16px; color: var(--navy); margin: 20px 0 10px; font-weight: 600; }
.article p { margin-bottom: 16px; font-size: 15px; line-height: 1.9; }
.article img { max-width: 100%; border-radius: 6px; margin: 20px 0; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.article .compare-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 13px; }
.article .compare-table th, .article .compare-table td { border: 1px solid var(--border); padding: 10px 12px; }
.article .compare-table th { background: var(--navy); color: white; font-size: 12px; font-weight: 500; letter-spacing: 1px; }
.article .compare-table td:first-child { font-weight: 600; background: #f7f8fa; width: 26%; font-size: 12px; }
.article .point-box { background: rgba(200,168,78,0.06); border-left: 4px solid var(--gold); padding: 16px 18px; margin: 24px 0; border-radius: 0 6px 6px 0; font-size: 14px; }
.article .breadcrumb { font-size: 11px; color: var(--text-light); margin-bottom: 24px; letter-spacing: 1px; }
.article .breadcrumb a { color: var(--navy-light); }
.article .breadcrumb a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; height: auto; padding: 12px 16px; gap: 8px; }
  .search-box { max-width: 160px; }
  nav { display: none; }
  .hero-full { min-height: 360px; }
  .hero-full h1 { font-size: 28px; }
  .hero-stats { gap: 28px; }
  .hero-stats .num { font-size: 22px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { min-height: 220px; }
  .featured-card.main { min-height: 260px; }
  .featured-text h2 { font-size: 16px; }
  .magazine-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mag-img { height: 150px; }
  .parts-grid { grid-template-columns: repeat(2, 1fr); }
  .article h1 { font-size: 22px; }
  .article { margin: 24px auto; }
  .section { padding: 0 16px; margin: 32px auto; }
  .cta-full { padding: 40px 16px; }
  .cta-full h2 { font-size: 20px; }
}
