/* =========================================================
   UNIO hair make  -  Stylesheet
   配色テーマ: ナチュラル・アース（テラコッタ × リネン）
   ---------------------------------------------------------
   色を変えたいときは下の :root の値を変更するだけでOKです
   参考パレット:
     Limestone Cream #E7DFD1 / Terracotta Clay #B86F4A
     Warm Umber #6E4A2E / Sandy Taupe #A48C72
     Olive Branch #6B6E4E / Natural Linen #C9BBA6
   ========================================================= */

:root {
  /* --- カラー ---------------------------------------- */
  --color-bg:      #EFE7DA; /* 背景（ライムストーン／リネン） */
  --color-main:    #B86F4A; /* 主色（テラコッタクレイ） */
  --color-accent:  #6E4A2E; /* 差し色（ウォームアンバー） */
  --color-text:    #4A392C; /* 本文（ダークブラウン） */
  --color-muted:   #A48C72; /* 補助テキスト（サンディトープ） */
  --color-line:    #DCCFBD; /* 罫線・仕切り（リネン） */
  --color-white:   #FFFFFF;
  --color-footer:  #4A3526; /* フッター背景（ディープアンバー） */

  /* サブカラー（差し色として随所に使用） */
  --color-cream:   #E7DFD1; /* ライムストーンクリーム */
  --color-linen:   #C9BBA6; /* ナチュラルリネン */
  --color-olive:   #6B6E4E; /* オリーブブランチ */

  /* --- フォント -------------------------------------- */
  --font-serif: "Shippori Mincho", "Noto Serif JP", serif;
  --font-sans:  "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- レイアウト ------------------------------------ */
  --max-width: 1080px;
  --gutter: 24px;
  --radius: 4px;
}

/* --- リセット -------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.9;
  font-size: 16px;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .7; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin: 0;
}

/* --- 共通レイアウト -------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 88px 0;
}

.section--tight { padding: 56px 0; }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title .en {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 6vw, 28px);
  letter-spacing: 0.14em;
  color: var(--color-accent);
}
.section-title .ja {
  display: block;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--color-muted);
  margin-top: 10px;
}

/* --- ボタン ---------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 14px;
  letter-spacing: 0.14em;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  background: transparent;
  border-radius: 40px;
  transition: all .25s;
}
.btn:hover {
  background: var(--color-accent);
  color: var(--color-white);
  opacity: 1;
}
.btn--fill {
  background: var(--color-main);
  border-color: var(--color-main);
  color: var(--color-white);
}
.btn--fill:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

/* =========================================================
   ヘッダー / ナビ
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;   /* ベタ塗りをやめて透過 */
  border-bottom: none;
}
/* 背景を「上は色味を残し、下に向かってぼかしごとフェード」させる層。
   コンテンツ（ロゴ・ナビ）より奥に敷き、下端はマスクで自然に消す。 */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 -22px 0;        /* 帯より下に少しはみ出させてフェードの余白を作る */
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(239, 231, 218, 0.88) 0%,
    rgba(239, 231, 218, 0.55) 50%,
    rgba(239, 231, 218, 0) 100%
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  /* ぼかし自体も下に向かって弱くする（プログレッシブブラー） */
  -webkit-mask-image: linear-gradient(to bottom, #000 42%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 42%, transparent 100%);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  letter-spacing: 0.22em;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
}
.site-logo small {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--color-muted);
  margin-top: 2px;
}
/* ロゴ画像（ヘッダー） */
.site-logo img {
  height: 30px;
  width: auto;
  display: block;
}
/* フッターは暗い背景なので、ロゴを白く反転して表示 */
.site-footer .site-logo img {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: .92;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav a {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--color-text);
}
.nav a.is-active { color: var(--color-main); }

/* ハンバーガー（スマホ用） */
.nav-toggle {
  display: none;
  width: 32px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  transition: transform .3s, opacity .3s;
}
.nav-toggle span:nth-child(1) { top: 2px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* =========================================================
   ヒーロー（トップ）
   ========================================================= */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-bg); /* ナビゲーションバーと同じ色合い */
  color: var(--color-text);
  padding: 40px var(--gutter);
}
/* ヒーローのロゴ */
.hero-logo {
  width: clamp(120px, 20vw, 320px);
  /*width: clamp(220px, 40vw, 420px);*/
  height: auto;
  display: block;
  margin: 0 auto;
}
/* 背景に写真を使う場合は、上の background を差し替えてください:
   background: linear-gradient(rgba(74,53,38,.3), rgba(74,53,38,.3)),
               url("../images/hero.jpg") center/cover no-repeat; */
.hero h1 {
  font-size: clamp(28px, 6vw, 52px);
  letter-spacing: 0.16em;
  text-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.hero p {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 0.2em;
}
.hero .hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(22px, 4.6vw, 40px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.22em;
  opacity: 1;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .16);
}

/* =========================================================
   トップ 各セクション
   ========================================================= */
.intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.intro p {
  margin: 0 0 1.4em;
  font-family: var(--font-serif);
  /* 画面幅（＝画面比率）に応じて文字サイズがなめらかに変化する。
     最小15px / 基準4.3vw / 最大19px の範囲でスケールする */
  font-size: clamp(15px, 4.3vw, 19px);
  line-height: 2;
  letter-spacing: 0.04em;
}
.intro p:first-child {
  font-size: clamp(16.5px, 4.9vw, 22px);
}

/* =========================================================
   レスポンシブな文章の折り返し（可視性を保つための工夫）
   - .wbr : 文節を一かたまりとして扱い、語の途中で不自然に
            折り返さないようにする。画面が狭くなると文節単位で
            自然に改行される。
   - .br-md : 広い画面でだけ表示する改行。狭い画面では消え、
              .wbr による自動折り返しにまかせる。
   ========================================================= */
.wbr { display: inline-block; }
.br-md { display: none; }
@media (min-width: 768px) {
  .br-md { display: inline; }
}

/* カード（メニューやサービス紹介） */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--color-accent);
}
.card p { font-size: 14px; color: var(--color-muted); margin: 0; }

/* CTA 帯 */
.cta {
  background: var(--color-main);
  color: var(--color-white);
  text-align: center;
}
.cta h2 { font-size: 24px; margin-bottom: 12px; }
.cta p { margin: 0 0 28px; font-size: 14px; }
.cta .btn { border-color: var(--color-white); color: var(--color-white); }
.cta .btn:hover { background: var(--color-white); color: var(--color-main); }

/* =========================================================
   プロフィール
   ========================================================= */
.profile-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: start;
}
.profile-photo {
  background: var(--color-line);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 13px;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-body h3 {
  font-size: 22px;
  margin-bottom: 6px;
}
.profile-body .role {
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: 0.14em;
  margin-bottom: 28px;
}
.profile-catch {
  font-family: var(--font-serif);
  font-size: clamp(16px, 5vw, 19px);
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin: 0 0 22px;
}
.profile-body p { margin: 0 0 1.4em; line-height: 1.9; }

/* 経歴（タイムライン） */
.history-title {
  margin: 40px 0 20px;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-text);
  letter-spacing: 0.08em;
}
.history-title .en {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.history {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
/* 縦のライン */
.history::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 4px;
  width: 1px;
  background: var(--color-line);
}
.history li {
  position: relative;
  padding: 0 0 22px 26px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
}
.history li:last-child {
  padding-bottom: 0;
}
/* ドット */
.history li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid var(--color-accent);
}
/* 現在（最終項目）は塗りつぶし */
.history li:last-child::before {
  background: var(--color-accent);
}

/* =========================================================
   料金メニュー
   ========================================================= */
.menu-list {
  max-width: 720px;
  margin: 0 auto;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
}
.menu-item .name { font-family: var(--font-serif); font-size: 17px; }
.menu-item .name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--color-muted);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.menu-item .price {
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-accent);
}
.menu-note {
  margin-top: 32px;
  font-size: 13px;
  color: var(--color-muted);
  text-align: center;
}

/* ============ 料金メニュー（カテゴリ詳細） ============ */
.price-menu {
  max-width: 680px;
  margin: 0 auto;
}
.price-group { margin-bottom: 60px; }
.price-group:last-child { margin-bottom: 0; }

.price-group__head {
  text-align: center;
  margin-bottom: 20px;
}
.price-group__head .en {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-main);
  margin-bottom: 8px;
}
.price-group__title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin: 0;
}
.price-group__lead {
  text-align: center;
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-muted);
  margin: -6px 0 20px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--color-line);
}
.price-row__body { flex: 1; }
.price-row__name {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--color-text);
}
.price-row__desc {
  display: block;
  font-size: 12.5px;
  line-height: 1.75;
  color: var(--color-muted);
  margin-top: 6px;
}
.price-row__price {
  white-space: nowrap;
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--color-accent);
}
.price-row__price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.price-row__desc--price {
  margin-top: 4px;
  text-align: right;
  white-space: nowrap;
}
.price-row--add { padding: 16px 4px; }
.price-row--add .price-row__name { font-size: 15px; color: var(--color-muted); }
.price-row--add .price-row__price { font-size: 15px; }

/* オプション枠 */
.price-options {
  margin-top: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 4px 22px 10px;
}
.price-options__title {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--color-main);
  padding: 14px 0 2px;
  margin: 0;
}
.price-options .price-row { padding: 13px 0; }
.price-options .price-row:last-child { border-bottom: none; }

/* グループ内の注記 */
.price-group__note {
  text-align: center;
  font-size: 12.5px;
  line-height: 1.8;
  color: var(--color-muted);
  margin-top: 18px;
}

/* 準備中バッジ */
.badge-prep {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.16em;
  padding: 4px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}

/* =========================================================
   ギャラリー
   ========================================================= */
.gallery-embed {
  max-width: 640px;
  margin: 0 auto;
}
.gallery-embed .snapwidget-widget {
  display: block;
  width: 100%;
}
/* 手動 3枚表示用のグリッド（埋め込みを使わない場合） */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid a {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   お問い合わせ
   ========================================================= */
.contact-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.contact-box p { margin: 0 0 32px; font-size: clamp(15px, 4.3vw, 16px); }
.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.btn-line {
  background: #06C755;
  border-color: #06C755;
  color: #fff;
  min-width: 260px;
}
.btn-line:hover { background: #05b34c; border-color: #05b34c; color:#fff; }
.btn-insta {
  min-width: 260px;
}

/* =========================================================
   フッター
   ========================================================= */
.site-footer {
  background: var(--color-footer);
  color: #EDE4D6;
  text-align: center;
  padding: 48px var(--gutter);
}
.site-footer .site-logo { color: #fff; }
.site-footer .site-logo small { color: var(--color-linen); }
.site-footer .footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.site-footer .footer-nav a { color: #EDE4D6; font-size: 13px; }
.site-footer .sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.site-footer .sns a { color:#fff; font-size: 13px; letter-spacing: 0.1em; }
.site-footer .copyright {
  font-size: 11px;
  color: #B49E84;
  letter-spacing: 0.1em;
}

/* =========================================================
   下層ページ共通の見出し帯
   ========================================================= */
.page-head {
  background: linear-gradient(135deg, #C68A63 0%, #A85E3C 100%);
  color: #fff;
  text-align: center;
  padding: 64px var(--gutter);
}
.page-head .en {
  font-family: var(--font-serif);
  font-size: clamp(24px, 7vw, 32px);
  letter-spacing: 0.16em;
}
.page-head .ja {
  display: block;
  font-size: 12px;
  letter-spacing: 0.24em;
  margin-top: 10px;
  opacity: .9;
}

/* =========================================================
   レスポンシブ（スマホ）
   ========================================================= */
@media (max-width: 820px) {
  .cards { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; gap: 32px; }
  .profile-photo { max-width: 300px; margin: 0 auto; }

  .nav {
    position: fixed;
    top: 68px;
    right: 0;
    height: calc(100vh - 68px);
    width: 70%;
    max-width: 300px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--color-bg);
    border-left: 1px solid var(--color-line);
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a {
    width: 100%;
    padding: 16px 4px;
    border-bottom: 1px solid var(--color-line);
    font-size: 15px;
  }
  .nav-toggle { display: block; }

  .section { padding: 64px 0; }
}

/* =========================================================
   モーション / ホバー演出（ナチュラルに、控えめに）
   - すべて soft な ease で、動きは小さめ
   - prefers-reduced-motion をオンにしている方には演出を無効化
   ========================================================= */

/* --- 1) スクロールでふわっと現れる（フェードアップ） --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* --- 2) ヒーローの文字がゆっくり立ち上がる（読み込み時） --- */
.hero h1,
.hero .hero-sub,
.hero p {
  opacity: 0;
  transform: translateY(16px);
  animation: heroRise 1s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero h1 { animation-delay: .1s; }
.hero .hero-sub { animation-delay: .3s; }
.hero p { animation-delay: .5s; }
@keyframes heroRise {
  to { opacity: 1; transform: none; }
}

/* --- 3) カード：ふわっと浮かせて、色をアクセントに --- */
.card {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(74, 53, 38, .12);
  border-color: var(--color-main);
}
.card h3 { transition: color .35s ease; }
.card:hover h3 { color: var(--color-main); }

/* --- 4) ボタン：少し持ち上がって柔らかい影 --- */
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(110, 74, 46, .22);
}
.btn:active { transform: translateY(0); }
.cta .btn:hover { box-shadow: 0 8px 20px rgba(0, 0, 0, .12); }

/* --- 5) ギャラリー画像：ホバーでそっとズーム --- */
.gallery-grid img { transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.gallery-grid a:hover img { transform: scale(1.06); }

/* --- 6) 料金・メニュー行：ホバーでほんのり色づく --- */
.price-row,
.menu-item {
  transition: background-color .3s ease;
  border-radius: var(--radius);
}
.price-row:hover,
.menu-item:hover { background-color: rgba(184, 111, 74, .07); }

/* --- 7) ナビ：中央から伸びる下線（PC表示のみ） --- */
@media (min-width: 821px) {
  .nav a {
    position: relative;
    transition: color .3s ease;
  }
  .nav a:hover { opacity: 1; color: var(--color-main); }
  .nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--color-main);
    transform: translateX(-50%);
    transition: width .3s ease;
  }
  .nav a:hover::after,
  .nav a.is-active::after { width: 100%; }
}

/* --- 動きを控えたい方には演出をオフに --- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero h1,
  .hero .hero-sub,
  .hero p,
  .hero-logo { opacity: 1; transform: none; animation: none; }
  .card:hover,
  .btn:hover,
  .gallery-grid a:hover img { transform: none; }
}

/* =========================================================
   デザイン強化 v2 — もう少しオシャレ＆ナチュラルに
   （V1へ戻すときは、このブロックを丸ごと削除すればOK）
   ========================================================= */

/* --- セクション見出し：EN の下に細い装飾ライン --- */
.section-title .en { position: relative; }
.section-title .en::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 16px auto 0;
  background: var(--color-main);
  opacity: .55;
}
.section-title .ja { margin-top: 16px; }

/* 下層ページの見出し帯にも同じ装飾（白ライン） */
.page-head .en { position: relative; display: inline-block; }
.page-head .en::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin: 16px auto 0;
  background: rgba(255, 255, 255, .7);
}

/* 料金カテゴリ見出しの下にも小さな区切り */
.price-group__title { position: relative; }

/* --- カード：やわらかい角丸・繊細な影・上部アクセントラインの出現 --- */
.card {
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(74, 53, 38, .04);
  overflow: hidden;
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-main), var(--color-olive));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1);
}
.card:hover::before { transform: scaleX(1); }
.card h3 { transition: color .35s ease, letter-spacing .35s ease; }
.card:hover h3 { letter-spacing: .05em; }

/* --- ボタン：塗りが左からワイプして入る上品なホバー --- */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); }
/* ワイプを見せるため、即時の背景塗りは無効化（色と浮きは活かす） */
.btn:hover { background: transparent; }
.btn--fill:hover { background: var(--color-main); }
.cta .btn::before { background: var(--color-white); }
.cta .btn:hover { background: transparent; color: var(--color-main); }

/* --- プロフィール写真：エディトリアルなオフセット枠＋ホバーで微ズーム --- */
.profile-photo {
  position: relative;
  box-shadow: 16px 16px 0 var(--color-linen);
}
.profile-photo img { transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.profile-photo:hover img { transform: scale(1.04); }
@media (max-width: 820px) {
  .profile-photo { box-shadow: 10px 10px 0 var(--color-linen); }
}

/* --- ギャラリー：ズームに加えて、そっとテラコッタのベール --- */
.gallery-grid a { position: relative; }
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(110, 74, 46, 0);
  transition: background .45s ease;
}
.gallery-grid a:hover::after { background: rgba(110, 74, 46, .16); }

/* --- フッターのリンク：下線がすっと伸びる --- */
.site-footer .footer-nav a,
.site-footer .sns a { position: relative; }
.site-footer .footer-nav a::after,
.site-footer .sns a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .3s ease;
}
.site-footer .footer-nav a:hover::after,
.site-footer .sns a:hover::after { width: 100%; }

/* --- ヒーロー：クリーム背景に合わせてビネットは無効化 --- */
.hero { overflow: hidden; }
.hero > div { position: relative; z-index: 1; }

/* ロゴがふわっと立ち上がる（読み込み時） */
.hero-logo {
  opacity: 0;
  transform: translateY(16px);
  animation: heroRise 1s cubic-bezier(.2, .7, .2, 1) .1s forwards;
}

/* --- スクロール出現に “ふわっとぼかし” を追加して、より柔らかく --- */
.reveal {
  filter: blur(6px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .7, .2, 1), filter .9s ease;
}
.reveal.is-in { filter: blur(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none; }
  .card::before,
  .btn::before,
  .gallery-grid a::after { transition: none; }
}
