:root {
  /* 白ベース＋淡いピンク＋シルバー＋ゴールド／黒は使わない方針 */
  --ink: #4a423d;          /* 文字（黒の代わりに深いグレージュ） */
  --ink-soft: #7d736b;     /* 補助テキスト */
  --greige: #b7ab9f;       /* エトプ系グレージュ */
  --paper: #fdfbf8;        /* ほぼ白の地 */
  --white: #ffffff;
  --line: #ece4da;         /* 罫線 */
  --pink: #e3b9b8;         /* 淡いピンク（アクセント） */
  --pink-soft: #f6e9e8;    /* 淡いピンクの面 */
  --gold: #b3925c;         /* ゴールド（キャップのイメージ・差し色） */
  --gold-lt: #e6c48f;      /* 明るいゴールド（きらめき用） */
  --silver: #c9c6c1;       /* シルバー */
  --deep: #5a4f48;         /* 濃い面（黒の代わり・反転セクション） */
  --shadow: 0 24px 70px rgba(120, 104, 92, 0.14);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", Georgia, "Times New Roman", serif;
  --sans: "Hiragino Sans", "Yu Gothic", "Meiryo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 500; line-height: 1.22; letter-spacing: 0.02em; }
h3 { margin-bottom: 12px; font-size: 19px; letter-spacing: 0.02em; }
p, dd { color: var(--ink-soft); line-height: 1.95; }

.sp-only { display: none; }

/* ===== スクロール出現アニメーション ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  * { animation: none !important; }
}

/* ===== きらめき（シマー）見出し ===== */
.shimmer {
  background: linear-gradient(
    100deg,
    var(--gold) 0%, var(--gold) 36%,
    var(--gold-lt) 46%, #fff7e6 50%, var(--gold-lt) 54%,
    var(--gold) 64%, var(--gold) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer-sweep 6s ease-in-out infinite;
}
@keyframes shimmer-sweep {
  0%, 100% { background-position: 130% 0; }
  50% { background-position: -30% 0; }
}

/* ===== 浮遊する光の粒 ===== */
.sparkles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.sparkles span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8e8 0%, var(--gold-lt) 40%, rgba(230,196,143,0) 72%);
  opacity: 0;
  animation: float-up 9s linear infinite;
}
.sparkles span:nth-child(1)  { left: 6%;  bottom: -8%; animation-duration: 11s; animation-delay: 0s;   transform: scale(0.7); }
.sparkles span:nth-child(2)  { left: 18%; bottom: -8%; animation-duration: 8s;  animation-delay: 1.4s; transform: scale(1.2); }
.sparkles span:nth-child(3)  { left: 27%; bottom: -8%; animation-duration: 13s; animation-delay: 3s;   transform: scale(0.5); }
.sparkles span:nth-child(4)  { left: 38%; bottom: -8%; animation-duration: 10s; animation-delay: 0.7s; transform: scale(0.9); }
.sparkles span:nth-child(5)  { left: 46%; bottom: -8%; animation-duration: 12s; animation-delay: 2.2s; transform: scale(1.4); }
.sparkles span:nth-child(6)  { left: 55%; bottom: -8%; animation-duration: 9s;  animation-delay: 4s;   transform: scale(0.6); }
.sparkles span:nth-child(7)  { left: 63%; bottom: -8%; animation-duration: 14s; animation-delay: 1s;   transform: scale(1); }
.sparkles span:nth-child(8)  { left: 71%; bottom: -8%; animation-duration: 8.5s;animation-delay: 2.8s; transform: scale(0.8); }
.sparkles span:nth-child(9)  { left: 79%; bottom: -8%; animation-duration: 11.5s;animation-delay: 0.3s;transform: scale(1.1); }
.sparkles span:nth-child(10) { left: 87%; bottom: -8%; animation-duration: 10.5s;animation-delay: 3.6s;transform: scale(0.5); }
.sparkles span:nth-child(11) { left: 93%; bottom: -8%; animation-duration: 9.5s;animation-delay: 1.8s; transform: scale(0.9); }
.sparkles span:nth-child(12) { left: 12%; bottom: -8%; animation-duration: 12.5s;animation-delay: 5s;  transform: scale(0.7); }
@keyframes float-up {
  0%   { opacity: 0; transform: translateY(0) scale(0.6); }
  12%  { opacity: 0.9; }
  70%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-92vh) scale(1.1); }
}

/* ===== ガラス（半透明）パネル ===== */
.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(120, 104, 92, 0.1);
}

/* ===== サンプル注記 ===== */
.draft-note {
  padding: 9px 18px;
  background: var(--deep);
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(253, 251, 248, 0.78);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { height: clamp(40px, 5.5vw, 56px); width: auto; display: block; }
.footer-logo { width: clamp(150px, 22vw, 190px); height: auto; margin: 0 auto 4px; display: block; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, rgba(230,196,143,0.18), rgba(255,255,255,0));
}

.brand-text { display: grid; }
.brand-name { font-family: Georgia, "Times New Roman", serif; font-size: 18px; letter-spacing: 0.06em; color: var(--ink); }
.brand-sub { color: var(--greige); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; }

.global-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 6px; }
.global-nav a { position: relative; padding: 9px 12px; color: var(--ink-soft); font-size: 13px; letter-spacing: 0.04em; transition: color 0.25s ease; }
.global-nav a:hover { color: var(--gold); }
.global-nav .nav-reserve {
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  padding: 8px 18px;
  transition: background 0.25s ease, color 0.25s ease;
}
.global-nav .nav-reserve:hover { background: var(--gold); color: #fff; }

/* ===== EYEBROW / BUTTON ===== */
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: #fff;
  background: linear-gradient(120deg, #c8a468 0%, var(--gold) 45%, #9d7a45 100%);
  box-shadow: 0 12px 30px rgba(179, 146, 92, 0.35);
}
.button.primary:hover { box-shadow: 0 16px 38px rgba(179, 146, 92, 0.45); }
.button.secondary { border: 1px solid var(--greige); color: var(--ink); background: rgba(255,255,255,0.6); }
.button.secondary:hover { border-color: var(--gold); color: var(--gold); }
.button.large { min-height: 56px; padding: 16px 44px; font-size: 15px; }

/* ボタンのきらめきスイープ */
.button.shine::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 4.5s ease-in-out infinite;
}
@keyframes btn-shine {
  0%, 60% { left: -120%; }
  85%, 100% { left: 130%; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(48px, 8vw, 104px) clamp(20px, 6vw, 88px);
  background:
    radial-gradient(120% 120% at 0% 0%, var(--pink-soft) 0%, rgba(246,233,232,0) 46%),
    radial-gradient(90% 90% at 100% 100%, rgba(230,196,143,0.16) 0%, rgba(230,196,143,0) 52%),
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}

.hero-copy { position: relative; z-index: 2; max-width: 660px; }
/* 助詞・単語の途中で折り返さない。改行は <br> の位置だけで行う */
.hero h1 {
  margin-bottom: 24px;
  font-size: clamp(30px, 4.2vw, 48px);
  word-break: keep-all;
  line-break: strict;
}
.hero .lead {
  font-size: clamp(15px, 1.4vw, 17px);
  max-width: 600px;
  word-break: keep-all;
  line-break: strict;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero-visual {
  position: relative;
  z-index: 1;
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--pink-soft) 0%, var(--white) 52%, #f1ece6 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: floaty 8s ease-in-out infinite;
}
.hero-visual::before {
  content: "";
  position: absolute;
  top: -60%; left: -40%;
  width: 80%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: rotate(8deg);
  animation: sheen 7s ease-in-out infinite;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid var(--silver);
  border-radius: 5px;
  pointer-events: none;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes sheen {
  0%, 55% { left: -50%; opacity: 0; }
  70% { opacity: 1; }
  100% { left: 120%; opacity: 0; }
}

.ph-label {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--greige);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.7;
}

/* ヒーロー画像（薔薇×ボトル）＋フランス語キャプション */
.hero-visual img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(44px, 8vw, 64px) 22px clamp(20px, 3vw, 30px);
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.9vw, 23px);
  letter-spacing: 0.1em;
  color: #fff;
  background: linear-gradient(to top, rgba(74,66,61,0.5) 0%, rgba(74,66,61,0.12) 55%, rgba(74,66,61,0) 100%);
  text-shadow: 0 1px 10px rgba(90,60,60,0.45);
}

/* ===== INTRO BAND ===== */
.intro-band {
  padding: clamp(42px, 6vw, 84px) clamp(20px, 10vw, 150px);
  background: linear-gradient(135deg, #5f544c 0%, var(--deep) 60%, #4f453f 100%);
}
.intro-band p {
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 31px);
  line-height: 1.7;
  text-align: center;
  word-break: keep-all;
  line-break: strict;
}

/* ===== SECTION 共通 ===== */
.section { padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 88px); }
.section-heading { max-width: 860px; margin: 0 auto clamp(32px, 5vw, 60px); text-align: center; }
.section-heading h2 { font-size: clamp(28px, 4vw, 50px); }
.menu-intro {
  max-width: 720px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.95;
  word-break: keep-all;
  line-break: strict;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
.about-lead { font-size: 16px; word-break: keep-all; line-break: strict; }
.about-points { margin: 0; padding: 0; list-style: none; display: grid; gap: 14px; }
.about-points li {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-points li:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(120,104,92,0.1); }
.about-points strong { display: block; color: var(--ink); font-size: 15px; letter-spacing: 0.04em; margin-bottom: 4px; }
.about-points strong::before { content: "—"; color: var(--gold); margin-right: 8px; }
.about-points span { color: var(--ink-soft); font-size: 14px; }

/* ===== CONCEPT ===== */
.concept {
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(255,255,255,0.7), rgba(255,255,255,0) 70%),
    var(--pink-soft);
}
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.concept-grid article {
  min-height: 250px;
  padding: 30px 28px;
  border-radius: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.concept-grid article:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(120,104,92,0.16); }
.concept-grid span {
  display: block;
  margin-bottom: 22px;
  font-family: Georgia, serif;
  font-size: 36px;
  background: linear-gradient(120deg, var(--pink), var(--gold-lt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== EXPERIENCE ===== */
.experience { background: var(--paper); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto 40px;
}
.split h2 { font-size: clamp(26px, 3.4vw, 44px); }
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--line);
}
.timeline li { min-height: 220px; padding: 28px; background: var(--white); transition: background 0.3s ease; }
.timeline li:hover { background: #fffaf3; }
.timeline span, .menu-label {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ===== MENU ===== */
.menu { background: var(--white); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
}
.menu-grid article {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 30px 28px;
  border-radius: 10px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.menu-grid article:hover { transform: translateY(-6px); box-shadow: 0 26px 60px rgba(120,104,92,0.16); }
.menu-grid .featured {
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
  position: relative;
}
.menu-grid .featured::before {
  content: "Recommended";
  position: absolute;
  top: 16px; right: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #fff;
  background: linear-gradient(120deg, var(--gold-lt), var(--gold));
}
.menu-price {
  margin: auto 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.menu-pricenote {
  max-width: 1120px;
  margin: 30px auto 0;
  text-align: center;
  color: var(--ink);
  font-size: clamp(14px, 1.4vw, 16px);
  letter-spacing: 0.04em;
}
.menu-note {
  max-width: 1120px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 13.5px;
  text-align: center;
}

/* ===== SIGNATURE（象徴のキャップ） ===== */
.signature {
  background:
    radial-gradient(70% 60% at 0% 100%, rgba(246,233,232,0.7), rgba(246,233,232,0) 60%),
    linear-gradient(180deg, var(--white) 0%, var(--paper) 100%);
}
.signature-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
}
.signature-body { order: 1; }   /* テキストを左へ */
.signature-photo { order: 2; }  /* 香水瓶の画像を右へ */
.signature-photo {
  position: relative;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(120, 104, 92, 0.22);
}
.signature-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  aspect-ratio: 3 / 4;
  transition: transform 1.2s ease;
}
.signature-photo:hover img { transform: scale(1.04); }
.signature-body h2 { font-size: clamp(26px, 3.2vw, 44px); margin-bottom: 20px; }
.signature-body p { color: var(--ink-soft); font-size: clamp(14px, 1.4vw, 16.5px); line-height: 1.95; margin-bottom: 16px; }
.signature-body p:last-child { margin-bottom: 0; }

@media (max-width: 980px) {
  .signature-grid { grid-template-columns: 1fr; }
  .signature-photo { max-width: 380px; margin: 0 auto; order: 0; } /* スマホは画像を上に */
  .signature-body { order: 0; }
}

/* ===== PROFILE ===== */
.profile {
  background:
    radial-gradient(70% 60% at 100% 0%, rgba(246,233,232,0.8), rgba(246,233,232,0) 65%),
    var(--white);
}
.profile-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 14px;
  align-items: center;
}
.profile-photo {
  position: relative;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(120, 104, 92, 0.22);
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* 上を基準にして下側をカット */
  aspect-ratio: 4 / 5;        /* 縦長すぎを解消（少し短く） */
  transition: transform 1.2s ease;
}
.profile-card:hover .profile-photo img { transform: scale(1.04); }
/* 写真の上に薄い光のヴェール（透明感・キラキラ） */
.photo-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 34%),
    radial-gradient(60% 40% at 80% 8%, rgba(255,248,232,0.45), rgba(255,248,232,0) 60%);
  mix-blend-mode: screen;
}
.photo-glow::after {
  content: "";
  position: absolute;
  top: -40%; left: -50%;
  width: 60%; height: 200%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: rotate(10deg);
  animation: sheen 9s ease-in-out infinite;
  animation-delay: 2s;
}
.profile-body h2 { font-size: clamp(26px, 3vw, 40px); margin-bottom: 16px; }
.note { margin-bottom: 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; color: var(--greige); }

/* ===== CONTACT ===== */
.contact {
  position: relative;
  padding: clamp(58px, 8vw, 116px) clamp(20px, 7vw, 100px);
  background: linear-gradient(135deg, #5f544c 0%, var(--deep) 55%, #4b423c 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.contact > *:not(.sparkles) { position: relative; z-index: 2; }
.contact h2 { font-size: clamp(28px, 4vw, 50px); margin-bottom: 18px; }
.contact .eyebrow { color: var(--pink); }
.contact-lead { max-width: 760px; margin: 0 auto 36px; color: rgba(255,255,255,0.82); word-break: keep-all; line-break: strict; }
.contact-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
}
.contact-flow li {
  flex: 1 1 200px;
  padding: 22px 18px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, background 0.3s ease;
}
.contact-flow li:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.contact-flow span {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 22px;
  background: linear-gradient(120deg, var(--gold-lt), #fff3d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-fine { margin-top: 16px; color: rgba(255,255,255,0.6); font-size: 12.5px; }

/* ===== FOOTER ===== */
.site-footer {
  display: grid;
  gap: 6px;
  padding: 40px clamp(20px, 6vw, 88px);
  background: var(--paper);
  border-top: 1px solid var(--line);
  text-align: center;
}
.site-footer .brand-name { font-size: 18px; letter-spacing: 0.1em; }
.site-footer > span { color: var(--ink-soft); font-size: 13px; letter-spacing: 0.06em; }
.site-footer small { color: var(--greige); font-size: 11.5px; letter-spacing: 0.1em; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 6px 0 4px;
}
.footer-links a {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-links .sep { color: var(--line); font-size: 12px; }
.footer-todo { color: var(--greige); opacity: 0.85; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero, .about-grid, .split, .profile-card { grid-template-columns: 1fr; }
  .site-header { position: sticky; flex-direction: column; align-items: flex-start; }
  .hero-visual { aspect-ratio: 16 / 10; order: -1; }
  .concept-grid, .menu-grid, .timeline { grid-template-columns: 1fr; }
  .timeline { gap: 0; }
  .profile-photo { max-width: 360px; margin: 0 auto; }
  .sp-only { display: inline; }
}

@media (max-width: 560px) {
  /* 画面が狭い時は keep-all による横はみ出しを防ぐため自然折り返しに戻す */
  .hero h1, .hero .lead, .intro-band p, .about-lead, .contact-lead {
    word-break: normal;
    line-break: auto;
  }
  .site-header { padding: 14px 16px; }
  .global-nav a { padding: 8px 9px; font-size: 12px; }
  .section, .intro-band, .contact, .hero { padding-left: 16px; padding-right: 16px; }
  .hero-actions { display: grid; }
  .concept-grid article, .menu-grid article, .timeline li, .profile-card, .about-points li { padding: 22px; }
}
