/* =============================================================
   NEMUÉ beauty atelier — components.css
   ボタン / 見出し / 抽象ビジュアル / カード / フォーム / 注記
   ============================================================= */

/* ---------- Section heading ---------- */
.c-section-head { margin-bottom: clamp(40px, 8vw, 64px); }
.c-section-head__en {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.c-section-head__en::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--color-accent-soft);
  flex: none;
}
.c-section-head__ja {
  font-size: clamp(1.55rem, 5.2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.55;
}
.c-section-head__lead {
  margin-top: 18px;
  color: var(--color-text-sub);
  max-width: 640px;
}
.c-section-head--center { text-align: center; }
.c-section-head--center .c-section-head__en { justify-content: center; }
.c-section-head--center .c-section-head__en::before { display: none; }
.c-section-head--center .c-section-head__lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 30px;
  border-radius: var(--radius-button);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.5;
  max-width: 100%;
  transition: background-color 0.3s var(--ease-soft), color 0.3s var(--ease-soft), border-color 0.3s var(--ease-soft);
}
.c-button--primary { background: var(--color-cta); color: #fff; }
.c-button--primary:hover,
.c-button--primary:focus-visible { background: var(--color-cta-hover); }
.c-button--ghost {
  background: transparent;
  color: var(--color-cta);
  border: 1px solid var(--color-cta);
}
.c-button--ghost:hover,
.c-button--ghost:focus-visible { background: var(--color-cta); color: #fff; }
.c-button__arrow {
  display: inline-block;
  flex: none;
  transition: transform 0.3s var(--ease-soft);
}
.c-button:hover .c-button__arrow,
.c-button:focus-visible .c-button__arrow { transform: translateX(4px); }
.c-button[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ヘッダーCTA：0〜1199pxは非表示（レイアウト上から完全に除外）。
   .c-button と同詳細度では後勝ちで打ち消されるため、必ず2クラス結合で指定する。
   1200px以上での表示は responsive.css 側で同じセレクタを使用。 */
.c-button.l-header__cta { display: none; }

/* ---------- 抽象ビジュアル（写真の代替アートワーク） ----------
   実在写真の偽装を避け、光・曲線・質感・タイポグラフィで構成する */
.c-art {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-photo);
  background: linear-gradient(160deg, #FBF7F1 0%, #F3EBDF 60%, #EADFCD 100%);
}
.c-art > svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.c-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.p-hero__art > img { object-position: 52% center; }
.p-concept__art > img { object-position: center center; }
.p-people__art--portrait > img { object-position: 54% center; }
.p-people__art--landscape > img { object-position: center center; }
.p-access__art > img { object-position: center center; }

.c-art--arch { border-radius: 999px 999px var(--radius-photo) var(--radius-photo); }

.c-art--dusk { background: linear-gradient(170deg, #FCF8F1 0%, #F1E7D7 55%, #E3D3BB 100%); }
.c-art--mist { background: linear-gradient(150deg, #FDFBF6 0%, #F4EDE1 70%, #EBE1D2 100%); }
.c-art--linen { background: linear-gradient(200deg, #FBF6EE 0%, #EFE5D6 100%); }

/* ---------- テキストリンク（副CTA：主要ボタンより明確に弱く） ---------- */
.c-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-cta);
  border-bottom: 1px solid rgba(114, 96, 82, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease-soft);
}
.c-link:hover,
.c-link:focus-visible { border-color: var(--color-cta); }
.c-link .c-button__arrow { font-family: var(--font-en); }

/* ---------- 営業プレビュー注記（1か所のみ・控えめ） ---------- */
.c-preview-note {
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
  padding: 28px 0;
}
.c-preview-note__inner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 760px;
  margin-inline: auto;
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-text-sub);
}
.c-preview-note__mark {
  flex: none;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  padding: 2px 12px;
  margin-top: 3px;
  white-space: nowrap;
}

