/* ============================================================
   サロンページ制作所 — 自社LP（ブランドA）
   salon-01 v3 の文法を継承した Editorial Luxury
   紙白 #faf9f7 / 墨 #1c1b19 / グレージュ #8a7a63 / 罫 #e5e1da
   Shippori Mincho × Josefin Sans × Noto Sans JP
   参照: Aesop（余白の静けさ）/ Kinfolk（誌面の規律）
   自己完結（_shared 不使用・単独デプロイ）
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100svh; line-height: 1.9; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
strong { font-weight: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Tokens ---------- */
:root {
  --bg: #faf9f7;
  --bg-tint: #f3f0ea;
  --ink: #1c1b19;
  --ink-soft: #55524c;
  --accent: #8a7a63;
  --line: #e5e1da;
  --serif: "Shippori Mincho", serif;
  --en: "Josefin Sans", sans-serif;
  --sans: "Noto Sans JP", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

::selection { background: var(--accent); color: var(--bg); }

.br-sp { display: none; }

/* ---------- Reveal ---------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
}

html.js [data-reveal].is-shown {
  opacity: 1;
  transform: none;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  transition: padding .5s ease, background .5s ease, border-color .5s ease;
  border-bottom: 1px solid transparent;
}

body.is-scrolled .site-header {
  padding: 14px 40px;
  background: rgba(250, 249, 247, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(229, 225, 218, 0.7);
}

.header-logo {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .45s cubic-bezier(0.19, 1, 0.22, 1);
}

.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta a {
  font-size: 12.5px;
  letter-spacing: 0.18em;
  color: var(--bg);
  background: var(--ink);
  padding: 12px 26px;
  transition: background 0.35s ease;
}

.nav-cta a::after { display: none; }
.nav-cta a:hover { background: var(--accent); color: var(--bg); }

.nav-toggle { display: none; }

/* ---------- Hero — タイポと余白（写真なし・ウォッシュなし） ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(120px, 16vh, 170px) 40px 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  flex: 1;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

.hero-mark {
  font-family: var(--en);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: clamp(28px, 4vh, 44px);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 3.9vw, 44px);
  line-height: 1.78;
  letter-spacing: 0.08em;
}

.hero-sub {
  margin-top: 26px;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}

/* 価格を隠さない — ヒーロー内の正価表示 */
.hero-price {
  margin-top: clamp(34px, 5vh, 52px);
  display: flex;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-price > div {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 8px 18px 0;
}

.hero-price > div + div {
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.hero-price dt {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-price dd strong {
  font-family: var(--en);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.hero-price .unit {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-left: 3px;
}

.hero-price .note {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.hero-actions {
  margin-top: clamp(30px, 4.5vh, 46px);
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

/* 書体見本カードの束 — 写真の代わりにタイポで語る（意図的な非対称） */
.hero-visual {
  position: relative;
  height: clamp(380px, 52vh, 520px);
}

.spec-card {
  position: absolute;
  width: min(64%, 240px);
  min-width: 0;
  aspect-ratio: 3 / 4;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -30px rgba(28, 27, 25, 0.28);
  overflow: hidden;
}

.spec-label {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.62;
}

.spec-name {
  margin: auto 0;
  line-height: 1.2;
}

.spec-en {
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.66;
}

.spec-minimal {
  background: #faf9f7;
  color: #1c1b19;
  top: 4%; left: 0;
  transform: rotate(-3.2deg);
  z-index: 1;
}

.spec-name-minimal {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(52px, 5.4vw, 72px);
  letter-spacing: 0.1em;
}

.spec-noir {
  background: #0e0d0b;
  color: #eae6de;
  border-color: #2a2822;
  top: 18%; left: 30%;
  transform: rotate(1.6deg);
  z-index: 2;
}

.spec-noir .spec-label, .spec-noir .spec-en { color: #c8a96a; opacity: 0.9; }

.spec-name-noir {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(54px, 5.6vw, 76px);
  letter-spacing: 0.04em;
}

.spec-pop {
  background: #fffaf3;
  color: #2b2350;
  border: 2px solid #2b2350;
  box-shadow: 5px 5px 0 rgba(43, 35, 80, 0.9);
  border-radius: 14px;
  top: 58%; left: 2%;
  width: min(52%, 196px);
  aspect-ratio: 1 / 1;
  transform: rotate(-1.8deg);
  z-index: 3;
}

.spec-pop .spec-label, .spec-pop .spec-en { color: #ff5d8f; opacity: 1; }

.spec-name-pop {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-scroll span {
  font-family: var(--en);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--ink-soft), transparent);
  animation: scrollline 2.6s ease-in-out infinite;
}

@keyframes scrollline {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- 共感の一段 — 縦書きアクセント（1箇所のみ） ---------- */
.empathy {
  background: var(--bg-tint);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.empathy-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
  padding-top: clamp(90px, 11vw, 140px);
  padding-bottom: clamp(90px, 11vw, 140px);
}

.empathy-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.3em;
  line-height: 1;
  white-space: nowrap; /* 縦書きは折返し禁止 — 一筆で立てる */
  color: var(--accent);
  justify-self: start;
  padding-left: clamp(0px, 2vw, 24px);
}

.empathy-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 2;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.empathy-text p {
  color: var(--ink-soft);
  line-height: 2.3;
  max-width: 38em;
}

.empathy-text p + p { margin-top: 1.6em; }

/* ---------- Sections（誌面の章扉） ---------- */
.section { padding: clamp(110px, 13vw, 170px) 0 0; }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 22px;
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-no {
  font-family: var(--en);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
}

.section-en {
  font-family: var(--en);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 400;
  letter-spacing: 0.14em;
}

.section-en::after {
  content: "";
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--line);
  vertical-align: middle;
  margin-left: 22px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.section-lead {
  margin-top: 22px;
  color: var(--ink-soft);
  line-height: 2.2;
  max-width: 38em;
}

/* ---------- デザインパターン（主役） ---------- */
.patterns-lead { margin-bottom: clamp(48px, 6vw, 72px); }

.pattern-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}

/* 上段2枚を大きく、下段3枚を小さく — 誌面のリズム */
.pattern-card { grid-column: span 3; }
.pattern-card:nth-child(n + 3) { grid-column: span 2; }

.pattern-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  transition: border-color .4s ease, transform .5s cubic-bezier(0.19, 1, 0.22, 1), box-shadow .5s ease;
}

.pattern-link:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -34px rgba(28, 27, 25, 0.35);
}

/* 見本エリア — そのテンプレの色×見出しフォントで店名を組む */
.pattern-specimen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: clamp(180px, 22vw, 260px);
  padding: 32px 20px;
  text-align: center;
  overflow: hidden;
}

.pattern-card:nth-child(-n + 2) .pattern-specimen { min-height: clamp(220px, 26vw, 300px); }

.pattern-store { line-height: 1.25; }

.pattern-store-en {
  font-family: var(--en);
  font-size: 10.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  opacity: 0.68;
}

.pattern-specimen--minimal { background: #faf9f7; color: #1c1b19; border-bottom: 1px solid var(--line); }
.pattern-store--minimal {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(46px, 5vw, 68px);
  letter-spacing: 0.14em;
}
.pattern-specimen--minimal .pattern-store-en { color: #8a7a63; opacity: 1; }

.pattern-specimen--noir { background: #0e0d0b; color: #eae6de; }
.pattern-store--noir {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(48px, 5.2vw, 72px);
  letter-spacing: 0.05em;
}
.pattern-specimen--noir .pattern-store-en { color: #c8a96a; opacity: 1; }

.pattern-specimen--organic { background: #f6f2ea; color: #33302a; border-bottom: 1px solid #d9d0bd; }
.pattern-store--organic {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: 0.22em;
}
.pattern-specimen--organic .pattern-store-en { color: #6b7d5e; opacity: 1; }

.pattern-specimen--editorial { background: #ffffff; color: #111111; border-bottom: 2px solid #111111; }
.pattern-store--editorial {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pattern-specimen--pop { background: #fffaf3; color: #2b2350; border-bottom: 2px solid #2b2350; }
.pattern-store--pop {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: 0.02em;
}
.pattern-specimen--pop .pattern-store-en { color: #ff5d8f; opacity: 1; }

/* カード下部 — 番号・名称・スウォッチ・方向一言 */
.pattern-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.pattern-title-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pattern-no {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.pattern-name {
  font-family: var(--en);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.pattern-swatches {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

.pattern-swatches i {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.pattern-desc {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2;
}

.pattern-cta {
  margin-top: auto;
  padding-top: 18px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

.pattern-cta::after {
  content: "\2192";
  display: inline-block;
  margin-left: 10px;
  transition: transform .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.pattern-link:hover .pattern-cta::after { transform: translateX(6px); }

.patterns-note {
  margin-top: 36px;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- 同じにならない仕組み ---------- */
.mechanism-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.mechanism-text p {
  margin-top: 24px;
  color: var(--ink-soft);
  line-height: 2.3;
  max-width: 36em;
}

.mechanism-text strong {
  color: var(--ink);
  font-weight: 400;
}

.mechanism-proof {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.proof-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 8px;
  border-bottom: 1px solid var(--line);
  transition: padding-left .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.proof-link:hover { padding-left: 18px; }

.proof-label {
  font-family: var(--en);
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  flex-shrink: 0;
  min-width: 56px;
}

.proof-swatches { display: flex; gap: 5px; flex-shrink: 0; }

.proof-swatches i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.proof-text { font-size: 13.5px; letter-spacing: 0.06em; }

.proof-arrow {
  margin-left: auto;
  font-family: var(--en);
  color: var(--accent);
  transition: transform .4s cubic-bezier(0.19, 1, 0.22, 1);
}

.proof-link:hover .proof-arrow { transform: translateX(6px); }

/* ---------- 含まれるもの ---------- */
.included-list {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(48px, 6vw, 88px);
  counter-reset: included;
}

.included-list li {
  counter-increment: included;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 0 22px 52px;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.included-list li::before {
  content: counter(included, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 24px;
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.included-name {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.included-note {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ---------- 料金 ---------- */
.price-cards {
  margin-top: clamp(44px, 5.5vw, 64px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.price-card {
  border: 1px solid var(--line);
  background: var(--bg);
  padding: clamp(36px, 4.4vw, 56px) clamp(28px, 3.6vw, 48px);
  position: relative;
}

.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--accent);
}

.price-card-label {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

.price-card-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-top: 12px;
}

.price-card-value {
  margin-top: 22px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price-card-value strong {
  font-family: var(--en);
  font-weight: 400;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.price-card-value .unit {
  font-size: 13px;
  color: var(--ink-soft);
}

.price-card-once {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.price-card-list {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.price-card-list li {
  padding: 13px 0 13px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-soft);
  position: relative;
}

.price-card-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--accent);
}

.price-options {
  margin-top: clamp(48px, 6vw, 72px);
  max-width: 720px;
}

.price-options-title {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.options-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.option-name {
  font-size: 14px;
  letter-spacing: 0.05em;
}

.option-dots {
  flex: 1;
  border-bottom: 1px dotted #cfc9bf;
  transform: translateY(-4px);
}

.option-price {
  font-family: var(--en);
  font-size: 15px;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.option-price .unit {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-soft);
  margin-left: 2px;
}

/* ---------- 制作の流れ ---------- */
.flow-list {
  margin-top: clamp(44px, 5.5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4.5vw, 64px);
}

.flow-step {
  font-family: var(--en);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
}

.flow-step::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--line);
  margin: 18px 0 20px;
}

.flow-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 13px;
}

.flow-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.1;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; }

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.faq-item:first-of-type { border-top: 1px solid var(--line); }

.faq-q {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  gap: 20px;
}

.faq-q::before {
  content: "Q";
  font-family: var(--en);
  font-size: 19px;
  color: var(--accent);
  flex-shrink: 0;
}

.faq-a {
  margin-top: 14px;
  font-size: 13px;
  line-height: 2.15;
  color: var(--ink-soft);
  display: flex;
  gap: 20px;
}

.faq-a::before {
  content: "A";
  font-family: var(--en);
  font-size: 19px;
  color: #c5bcae;
  flex-shrink: 0;
}

/* ---------- 運営者 ---------- */
.owner-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}

.owner-media { position: relative; }

.owner-media::after {
  content: "";
  position: absolute;
  top: 20px; left: -20px;
  width: 100%; height: 100%;
  border: 1px solid var(--line);
  z-index: -1;
}

.owner-photo-placeholder {
  aspect-ratio: 4 / 5;
  background: var(--bg-tint);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.owner-photo-placeholder span {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}

.owner-role {
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}

.owner-name {
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 12px 0 26px;
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.owner-name-en {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.owner-message {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.05em;
  max-width: 34em;
}

.owner-reason {
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 2.3;
  max-width: 36em;
}

/* ---------- CTA ---------- */
.cta {
  margin-top: clamp(120px, 14vw, 180px);
  border-top: 1px solid var(--line);
  background: var(--bg-tint);
}

.cta-inner {
  padding-top: clamp(90px, 10vw, 130px);
  padding-bottom: clamp(90px, 10vw, 130px);
  text-align: center; /* 中央揃えは“決め”のこの一箇所 */
}

.cta-en {
  font-family: var(--en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 20px 0 16px;
}

.cta-text {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-mail {
  margin-top: 40px;
  font-size: 12px;
  color: var(--ink-soft);
}

.cta-mail a {
  margin-left: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color .3s ease, border-color .3s ease;
}

.cta-mail a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-block;
  min-width: 232px;
  padding: 19px 34px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-align: center;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  z-index: 1;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-ghost {
  border: 1px solid var(--ink);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  padding: 64px 24px 48px;
  text-align: center;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.footer-links {
  margin-top: 22px;
  font-size: 12px;
}

.footer-links a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color .3s ease, border-color .3s ease;
}

.footer-links a:hover { color: var(--accent); border-color: var(--accent); }

.footer-copy {
  margin-top: 20px;
  font-family: var(--en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
}

/* ============================================================
   Mobile
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }

  .hero-visual {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 560px;
  }

  .spec-card {
    position: static;
    width: 100%;
    transform: none;
    aspect-ratio: 3 / 4;
    padding: 14px 14px;
  }

  .spec-card:nth-child(1) { transform: rotate(-2deg); }
  .spec-card:nth-child(2) { transform: rotate(1.4deg) translateY(10px); }
  .spec-card:nth-child(3) { transform: rotate(-1.2deg); }

  .spec-name-minimal { font-size: clamp(30px, 8vw, 44px); }
  .spec-name-noir { font-size: clamp(30px, 8vw, 46px); }
  .spec-name-pop { font-size: clamp(17px, 4.6vw, 26px); }
  .spec-label { font-size: 8.5px; letter-spacing: 0.2em; }
  .spec-en { font-size: 8.5px; letter-spacing: 0.14em; }

  .pattern-card,
  .pattern-card:nth-child(n + 3) { grid-column: span 6; }
  .pattern-specimen,
  .pattern-card:nth-child(-n + 2) .pattern-specimen { min-height: 190px; }

  .mechanism-grid { grid-template-columns: 1fr; gap: 48px; }
  .included-list { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: 1fr; gap: 40px; }

  .owner-grid { grid-template-columns: 1fr; gap: 44px; }
  .owner-media { max-width: 340px; }
}

@media (max-width: 720px) {
  .br-sp { display: inline; }

  .site-header, body.is-scrolled .site-header { padding: 16px 20px; }
  .site-header {
    background: rgba(250, 249, 247, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(229, 225, 218, 0.6);
  }

  .header-logo { font-size: 14px; letter-spacing: 0.14em; }

  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(250, 249, 247, 0.98);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .site-nav a { font-size: 18px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 110;
  }

  .nav-toggle span {
    display: block;
    width: 26px;
    height: 1px;
    background: var(--ink);
    margin: 0 auto;
    transition: transform 0.35s ease;
  }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4px) rotate(20deg); }
  body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-20deg); }

  .inner { padding: 0 20px; }
  .hero { padding: 108px 20px 64px; }
  .hero-title { line-height: 1.8; }
  .hero-scroll { display: none; }

  .hero-price { flex-direction: column; }
  .hero-price > div { padding: 16px 0 14px; }
  .hero-price > div + div { border-left: none; border-top: 1px solid var(--line); padding-left: 0; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { min-width: 100%; }

  .empathy-inner {
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: start;
  }

  .empathy-vertical {
    font-size: 17px;
    letter-spacing: 0.24em;
    padding-left: 0;
    padding-top: 6px;
  }

  .section { padding-top: 96px; }
  .section-head { margin-bottom: 40px; }

  .pattern-meta { padding: 18px 18px 20px; }

  .included-list li { padding-left: 44px; }

  .options-list li { flex-wrap: wrap; gap: 8px; }
  .option-dots { display: none; }
  .option-price { margin-left: auto; }

  .owner-media::after { top: 14px; left: -14px; }

  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-mail a { display: inline-block; margin-left: 0; margin-top: 8px; }
}
