/* ym2026 Official Store ── 全5ページ共有スタイル
   index / about / collection / quality / contact

   方針
   1. 地は黒。商品写真そのものが唯一の色情報なので、UIは徹底して沈める。
   2. 商品写真は全点が横 1.41:1（1280×907 または 1520×1078）で統一されている。
      画像内にNew Eraロゴ等が焼き込まれているため、正方形に切らずこの比率のまま面として使う。
   3. 黒地の上の金・グレーは明度が落ちやすい。文字に使う色は必ず
      いちばん明るい地（--panel）の上で 4.5:1 を超える値まで起こしてある。
      各色のコントラスト実測値は変数のコメントに記載。 */

/* ===== TOKENS ===== */
:root {
  /* 地。同じ地が3つ以上続かないよう、セクション単位で織り交ぜる */
  --base:      #080808;
  --deep:      #0e0e10;
  --panel:     #131315;
  --panel-2:   #191919;
  --footer-bg: #050505;

  --line:      rgba(255,255,255,0.08);
  --line-gold: rgba(201,168,76,0.22);

  /* 金。--gold-quiet は旧 rgba(201,168,76,.15)（1.3:1）の置き換え。
     装飾的な弱い金でも、文字である以上 4.5:1 を割らない値で止める */
  --gold:       #c9a84c;  /* 8.1:1 on --panel */
  --gold-light: #e8d59a;  /* 12.5:1 on --panel */
  --gold-quiet: #a4873f;  /* 5.4:1 on --panel */

  /* 文字。--text-dim は旧 #5c5a56（2.7:1）の置き換え */
  --text:     #ede9e2;    /* 15.9:1 on --panel */
  --text-sub: #a8a49c;    /* 7.5:1  on --panel */
  --text-dim: #8e8a83;    /* 5.4:1  on --panel */

  /* 余白。ページ間で必ず同じ尺を使う。個別のpxを書かない */
  --pad:      clamp(20px, 5vw, 40px);
  --sec:      clamp(72px, 10vw, 128px);
  --sec-half: clamp(40px, 6vw, 72px);
  --gap:      clamp(32px, 6vw, 80px);

  --container: 1100px;
  --header-h:  72px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--base);
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Shippori Mincho", "Noto Serif JP", serif;
  color: #fff;
  font-weight: 600;
  line-height: 1.6;
  text-wrap: balance;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ===== 公開前の作業メモ ─ 公開時に .prelaunch-note ごと削除する =====
   ブランドの配色（黒×金）から意図的に外し、サイトの一部に見えないようにしている */
.prelaunch-note {
  position: relative;
  z-index: 300;
  background: #ffd400;
  color: #101010;
  font-family: "Noto Sans JP", monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 9px var(--pad);
  border-bottom: 3px solid #101010;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.measure { max-width: 760px; margin-left: auto; margin-right: auto; }

.section { padding: var(--sec) 0; }
.section-alt  { background: var(--panel); }
.section-dark { background: var(--deep); }

/* 区切りは余白ではなく地の切り替えで作る。
   地が同じまま続くときだけ、この一本線で境目を示す */
.section-divider { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ===== 見出しまわりの共通部品 ===== */
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow-center { text-align: center; }

.gold-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.gold-rule-left { margin-left: 0; }

.section-title {
  font-size: clamp(22px, 3.4vw, 31px);
  letter-spacing: 0.07em;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 18px;
}
.section-title-left { text-align: left; }

.section-lead {
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--text-sub);
  text-align: center;
  max-width: 560px;
  margin: 0 auto var(--sec-half);
}
.section-lead-left { text-align: left; margin-left: 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: #0d0d0d; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { border: 1px solid rgba(255,255,255,0.38); color: #fff; }
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-sm { padding: 11px 22px; font-size: 11.5px; }

.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.actions-center { justify-content: center; }
.after-block { margin-top: var(--sec-half); }

/* ===== HEADER =====
   sticky。fixed だと上の作業メモ帯を隠してしまうため。
   写真の上に重なるので、地は文字が 4.5:1 を保てるところまで濃くしている */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-gold);
}
/* 狭い画面ではハンバーガーを使わず2段に折る。
   横スクロールするナビは scrollWidth を膨らませるので採らない */
.header-inner {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 9px 14px;
  padding-top: 11px;
  padding-bottom: 9px;
}
/* DOM順は ロゴ → ナビ → ボタン。1段目にロゴとボタン、2段目にナビを置く */
.header-inner > .logo { grid-row: 1; grid-column: 1; }
.header-inner > .btn  { grid-row: 1; grid-column: 2; justify-self: end; }
.header-inner > .nav-links { grid-row: 2; }
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}
.logo-sub {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 8.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-top: 3px;
}

.nav-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-sub);
  padding: 3px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold-light); border-bottom-color: var(--gold); }

@media (min-width: 900px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    height: var(--header-h);
    padding-top: 0;
    padding-bottom: 0;
  }
  .header-inner > .logo { grid-column: 1; }
  .header-inner > .nav-links {
    grid-row: 1;
    grid-column: 2;
    flex-wrap: nowrap;
    gap: clamp(16px, 2.2vw, 30px);
    padding-top: 0;
    border-top: 0;
  }
  .header-inner > .btn { grid-row: 1; grid-column: 3; }
}

/* ===== HERO（index） =====
   旧版は min-height:100vh 固定で、内容が少ないぶん縦に空きすぎていた。
   高さは中身に持たせ、上限だけ min() で抑える */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border-bottom: 1px solid var(--line-gold);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 9vw, 104px) var(--pad);
}
.hero-copy-inner { max-width: 520px; width: 100%; }
.hero-copy h1 {
  font-size: clamp(28px, 5.2vw, 44px);
  letter-spacing: 0.04em;
  line-height: 1.55;
  margin-bottom: 22px;
}
.hero-body {
  font-size: 14px;
  line-height: 2.1;
  color: var(--text-sub);
  margin-bottom: 36px;
}
.hero-cta { margin-bottom: clamp(36px, 5vw, 52px); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 2.5vw, 32px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-stat-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.hero-stat-value {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: clamp(14px, 2.2vw, 17px);
  line-height: 1.5;
  color: var(--gold-light);
}

/* スライダー。画像は 1.41:1 なので cover でも実質トリミングされない */
.hero-slider { position: relative; overflow: hidden; background: var(--deep); }
.hero-slider-track { display: flex; width: 900%; will-change: transform; }
.hero-slider-track img {
  flex: none;
  width: calc(100% / 9);
  aspect-ratio: 1.41;
  height: auto;
  object-fit: cover;
}
.hero-slider-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.25); }

@media (min-width: 900px) {
  .hero { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  /* 左カラムの文字を、他ページの .container の左端に揃える。
     カラム幅 = 画面の半分なので、100% - (container/2 - pad) でその位置になる。
     100vw を使うとスクロールバー幅ぶん横に溢れるため使わない */
  .hero-copy {
    padding-left: max(var(--pad), calc(100% - (var(--container) / 2) + var(--pad)));
    padding-right: clamp(32px, 4vw, 64px);
  }
  /* スライダーは高さを引き伸ばさず、写真本来の 1.41:1 のまま中央に置く。
     引き伸ばすと画像に焼き込まれた New Era ロゴが切れてしまう */
  .hero-slider { align-self: center; }
}

/* ===== PAGE HERO（下層4ページ共通） =====
   4ページで必ず同じ組み。eyebrow → 金の罫 → h1 → リード → パンくず */
.page-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(44px, 6vw, 72px);
  background: var(--deep);
  border-bottom: 1px solid var(--line-gold);
}
.page-hero h1 {
  font-size: clamp(25px, 4.4vw, 36px);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 18px;
}
.page-hero .page-lead {
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--text-sub);
  max-width: 520px;
}
.breadcrumb {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-top: clamp(28px, 4vw, 44px);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ===== STORY（写真と本文の2分割） ===== */
.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--gap);
  align-items: center;
}
@media (min-width: 860px) {
  .story-grid { grid-template-columns: minmax(0, 440px) minmax(0, 1fr); }
  /* 写真を右に置く回（about 2枚目）。DOM順は本文が先で読み順を保つ */
  .story-grid-flip { grid-template-columns: minmax(0, 1fr) minmax(0, 440px); }
}
.story-img-wrap { position: relative; }
/* 金の枠は写真から少しずらして掛ける。全周に回すと額縁になり安く見える */
.story-img-wrap::after {
  content: '';
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 1px solid var(--gold);
  pointer-events: none;
}
.story-img-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.41;
  object-fit: cover;
}
.story-text p {
  font-size: 14px;
  line-height: 2.15;
  color: var(--text-sub);
}
.story-text p + p { margin-top: 1.4em; }
.story-text .btn { margin-top: clamp(24px, 3vw, 32px); }

/* ===== 一点ものであることの宣言帯 =====
   商品を並べる前に必ず一度置く。グリッドだけだと「在庫一覧」に見えてしまうため */
.statement {
  background: var(--base);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  padding: clamp(56px, 8vw, 96px) 0;
  text-align: center;
}
.statement-line {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(21px, 4.2vw, 34px);
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.1em;
  color: #fff;
}
.statement-line em { font-style: normal; color: var(--gold-light); }
.statement-sub {
  margin-top: clamp(20px, 3vw, 28px);
  font-size: 13px;
  line-height: 2.1;
  color: var(--text-sub);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PROOF ===== */
.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 760px) { .proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.proof-card { background: var(--panel); padding: clamp(32px, 4vw, 46px) clamp(24px, 3vw, 36px); text-align: center; }
.proof-value {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.proof-text { font-size: 13px; line-height: 2; color: var(--text-sub); }

/* ===== FEATURE ===== */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 44px);
}
@media (min-width: 760px) { .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.feature-item { border-top: 1px solid var(--line); padding-top: 26px; }
.feature-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--gold-quiet);
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}
.feature-item h3 { font-size: 15px; letter-spacing: 0.04em; margin-bottom: 12px; }
.feature-item p { font-size: 13px; line-height: 2; color: var(--text-sub); }

/* ===== PRODUCT GALLERY =====
   375px で横に溢れていた原因は index 側のインライン repeat(3,1fr) と、
   1fr の最小幅が型番テキストの min-content になっていたこと。
   列は minmax(0,1fr) で潰せるようにし、型番自体も折り返せるようにする */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
}
@media (min-width: 700px)  { .product-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .product-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
/* index のティザーは3点だけなので4列に伸ばさない */
@media (min-width: 700px)  { .product-gallery-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.product-card {
  background: var(--panel);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.product-photo { overflow: hidden; background: var(--deep); }
.product-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.41;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-photo img { transform: scale(1.045); }

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(14px, 2.4vw, 20px) clamp(12px, 2vw, 18px) clamp(18px, 2.6vw, 24px);
}
/* 型番は「同じものが二度と作られない」ことの実体。金で、いちばん上に置く */
.product-model {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--gold-quiet);
  overflow-wrap: anywhere;
  margin-bottom: 6px;
}
.product-team {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(13px, 2.6vw, 15px);
  line-height: 1.6;
  color: #fff;
  overflow-wrap: anywhere;
  margin-bottom: 14px;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.product-price { font-size: 15px; font-weight: 700; color: var(--gold-light); }
.product-badge {
  font-size: 9.5px;
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding: 4px 9px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.gallery-note {
  margin-top: clamp(24px, 3vw, 32px);
  font-size: 12px;
  line-height: 2;
  color: var(--text-dim);
  text-align: center;
}

/* ===== INFO GRID（quality） =====
   旧版は見出しに絵文字を置いていた。ブランドの品位に合わないため通し番号に変更 */
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 700px)  { .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.info-grid-3 { }
@media (min-width: 700px)  { .info-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.info-item { background: var(--panel); padding: clamp(28px, 3.4vw, 40px) clamp(22px, 2.6vw, 32px); }
.section-dark .info-item { background: var(--panel); }
.info-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gold-quiet);
  margin-bottom: 16px;
}
.info-item h3 { font-size: 14.5px; letter-spacing: 0.04em; line-height: 1.75; margin-bottom: 12px; }
.info-item p { font-size: 12.5px; line-height: 2.05; color: var(--text-sub); }
.stone-stars { display: block; font-size: 19px; letter-spacing: 0.12em; color: var(--gold); margin-top: 4px; }
.stone-addon { display: block; font-size: 12px; letter-spacing: 0.16em; color: var(--text-sub); margin-top: 6px; }

/* ===== QUOTE ===== */
.quote-block {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  padding: clamp(18px, 3vw, 26px) clamp(20px, 3.4vw, 34px);
  border-left: 2px solid var(--gold);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(14px, 2.4vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--text);
}
.quote-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 2.15;
  color: var(--text-sub);
  text-align: center;
}

/* ===== TABLE ===== */
.data-table {
  width: 100%;
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 36px);
  border-collapse: collapse;
  font-size: 13px;
  table-layout: fixed;
}
.data-table th, .data-table td {
  padding: clamp(11px, 2vw, 16px) clamp(10px, 1.8vw, 20px);
  text-align: left;
  line-height: 1.9;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
  vertical-align: top;
}
.data-table th:first-child, .data-table td:first-child { width: 34%; }
.data-table thead th {
  background: var(--panel-2);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.data-table tbody th { color: #fff; font-weight: 700; }
.data-table tbody td { color: var(--text-sub); }

/* ===== HIGHLIGHT ===== */
.highlight-box {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(22px, 3.4vw, 30px) clamp(22px, 3.4vw, 38px);
  border: 1px solid var(--line-gold);
  font-size: 13.5px;
  line-height: 2.1;
  color: var(--text-sub);
  text-align: center;
}

/* ===== FLOW ===== */
.flow { max-width: 620px; margin: 0 auto clamp(24px, 3vw, 32px); }
.flow-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: clamp(14px, 3vw, 24px);
  align-items: start;
  padding: clamp(20px, 3vw, 28px) 0;
  border-bottom: 1px solid var(--line);
}
.flow-step:first-child { border-top: 1px solid var(--line); }
.flow-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.2;
  color: var(--gold);
}
.flow-text { font-size: 13.5px; line-height: 1.95; color: var(--text-sub); }
.note-line { font-size: 12px; line-height: 2; color: var(--text-dim); text-align: center; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { padding: clamp(24px, 3.4vw, 32px) 0; border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { font-size: 15px; font-weight: 700; letter-spacing: 0.03em; color: #fff; margin-bottom: 12px; }
.faq-a { font-size: 13.5px; line-height: 2.05; color: var(--text-sub); }

/* ===== CTA ===== */
.section-cta {
  background: var(--deep);
  padding: var(--sec) 0;
  text-align: center;
  border-top: 1px solid var(--line-gold);
}
.cta-eyebrow { display: block; font-size: 11px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 20px; }
.cta-title { font-size: clamp(21px, 3.4vw, 30px); letter-spacing: 0.06em; margin-bottom: 18px; }
.cta-body { font-size: 13.5px; line-height: 2.1; color: var(--text-sub); margin-bottom: clamp(28px, 4vw, 40px); }
.cta-note { font-size: 12px; color: var(--text-dim); margin-top: 18px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); padding: clamp(44px, 6vw, 60px) 0 40px; border-top: 1px solid var(--line-gold); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(28px, 5vw, 48px);
  padding-bottom: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
  margin-bottom: 26px;
}
.footer-brand { min-width: 0; }
.footer-brand .logo { font-size: 18px; }
.footer-brand p { max-width: 280px; margin-top: 14px; font-size: 12px; line-height: 1.95; color: var(--text-dim); }
.footer-nav { display: grid; gap: 12px; }
.footer-nav a { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-sub); }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-size: 11.5px; color: var(--text-dim); text-align: center; }

/* ===== スクロールで浮かび上がる（JSがある時だけ有効化） ===== */
.has-js .rise { opacity: 0; transform: translateY(18px); transition: opacity 0.9s ease, transform 0.9s ease; }
.has-js .rise.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .has-js .rise { opacity: 1; transform: none; transition: none; }
  .btn:hover, .product-card:hover .product-photo img { transform: none; }
}
