/* ============================================
   KAMIYA hair salon - Common Stylesheet
   Sumi Natural — 墨と和紙の大人ナチュラル
   ============================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  /* base — 和紙のクリーム白 */
  --c-base: #FAF6EF;
  --c-beige: #E5D9C3;
  --c-beige-soft: #F1E8D6;
  /* brand — 温かい墨茶（変数名は Ravigote 互換のため green/olive を踏襲） */
  --c-green: #4A3B2E;
  --c-olive: #2E2620;
  --c-text: #2B2A26;
  --c-text-soft: #5C5650;
  /* accent — 琥珀 */
  --c-gold: #A8743A;
  --c-gold-deep: #8B5E2C;
  --ff-en-serif: 'Marcellus', 'Cormorant Garamond', 'Times New Roman', serif;
  --ff-jp-serif: 'Shippori Mincho', 'Noto Serif JP', 'Yu Mincho', '游明朝', serif;
  --ff-jp-sans: 'Noto Sans JP', 'Yu Gothic', '游ゴシック', sans-serif;
  --ff-en-sans: 'Jost', 'Helvetica Neue', sans-serif;
  --max-w: 1240px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
}

body {
  background: var(--c-base);
  color: var(--c-text);
  font-family: var(--ff-jp-serif);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.section--tight { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-title { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-label {
  font-family: var(--ff-en-sans);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-olive);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}
.section-label::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--c-olive);
  display: inline-block;
}
.section-heading {
  font-family: var(--ff-en-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--c-olive);
}
.section-heading-jp {
  display: block;
  font-family: var(--ff-jp-serif);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  letter-spacing: 0.3em;
  color: var(--c-text-soft);
  margin-top: 0.8rem;
  font-weight: 400;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.4rem 0;
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}
.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.96);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 rgba(43, 42, 38, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
/* When header is transparent over the hero, give the small sub-label and nav links a soft white text-shadow for legibility on bright photo areas */
.site-header:not(.is-scrolled) .brand-logo span,
.site-header:not(.is-scrolled) .brand-logo small {
  color: var(--c-olive);
  text-shadow: 0 1px 2px rgba(250, 246, 239, 0.65);
}
.site-header:not(.is-scrolled) .global-nav a {
  text-shadow: 0 1px 2px rgba(250, 246, 239, 0.5);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad-x);
  gap: 1.5rem;
}
.brand-logo {
  font-family: var(--ff-en-serif);
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c-olive);
  letter-spacing: 0.02em;
}
.brand-logo span,
.brand-logo small {
  display: block;
  font-family: var(--ff-en-sans);
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-top: 0.45rem;
}
.global-nav { display: flex; align-items: center; gap: 0; }
.global-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin-right: 1.4rem;
}
.header-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-right: 1rem;
}
.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  color: #fff;
  background: var(--c-olive);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 1px 3px rgba(43, 42, 38, 0.15);
}
.header-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(43, 42, 38, 0.22);
  filter: brightness(1.08);
}
.header-social a svg {
  width: 18px; height: 18px;
  display: block;
  fill: #fff;
}
/* Brand colors */
.header-social a.is-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 20%, #dc2743 40%, #cc2366 65%, #bc1888 100%);
}
.header-social a.is-line { background: #06C755; }
.header-social a.is-phone { background: #2E2620; }
/* On hero (transparent header) — slight ring for separation against photo */
.site-header:not(.is-scrolled) .header-social a {
  box-shadow: 0 0 0 2px rgba(250, 246, 239, 0.55), 0 2px 6px rgba(43, 42, 38, 0.18);
}
.global-nav a {
  font-family: var(--ff-jp-sans);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  color: var(--c-text);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}
.global-nav a:hover { color: var(--c-green); }
.global-nav a[aria-current="page"]::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--c-green);
}
.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  background: var(--c-olive);
  color: var(--c-base);
  border-radius: 4px;
  font-family: var(--ff-jp-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn-reserve:hover { background: #1A1410; transform: translateY(-1px); }
.btn-reserve::after { content: '→'; font-family: var(--ff-en-sans); }

/* Mobile menu trigger */
.menu-toggle { display: none; }

/* ---------- Hero (full-bleed background) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
.hero-bg::after {
  /* stronger center halo so text reads against any part of the photo */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 55%, rgba(250, 246, 239, 0.82) 0%, rgba(250, 246, 239, 0.5) 38%, rgba(250, 246, 239, 0.18) 70%, rgba(250, 246, 239, 0) 100%),
    linear-gradient(180deg, rgba(250, 246, 239, 0.28) 0%, rgba(250, 246, 239, 0.05) 30%, rgba(250, 246, 239, 0.32) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  justify-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 9rem var(--pad-x) 6rem;
  position: relative;
  z-index: 1;
  min-height: 100vh;
}
.hero-text {
  position: relative;
  z-index: 3;
  padding-right: 0;
  max-width: 720px;
  text-align: center;
  color: var(--c-text);
}
.hero-text .hero-pretitle {
  color: var(--c-green);
  justify-content: center;
}
.hero-text .hero-pretitle::before { background: var(--c-green); }
.hero-text .hero-title {
  color: var(--c-olive);
}
.hero-text .hero-title em {
  color: var(--c-green);
  letter-spacing: 0.32em;
}
.hero-text .hero-catch {
  color: var(--c-text);
  font-weight: 500;
}
.hero-text .hero-lead {
  color: var(--c-text);
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  font-weight: 400;
}
.hero-meta,
.hero-scroll {
  color: var(--c-olive);
  font-weight: 500;
}
.hero-scroll::after { background: var(--c-olive); }
.hero-pretitle {
  font-family: var(--ff-en-sans);
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-pretitle::before {
  content: '';
  width: 36px; height: 1px;
  background: var(--c-green);
  display: inline-block;
}
.hero-title {
  font-family: var(--ff-en-serif);
  font-weight: 300;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: var(--c-olive);
}
.hero-title em {
  display: block;
  font-style: normal;
  font-family: var(--ff-en-serif);
  font-size: 0.42em;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-top: 1.2rem;
  font-weight: 400;
}
.hero-catch {
  margin-top: 2.4rem;
  font-family: var(--ff-jp-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 2;
  letter-spacing: 0.14em;
  color: var(--c-text);
}
.hero-lead {
  margin-top: 1.6rem;
  font-size: 0.9rem;
  line-height: 2.2;
  color: var(--c-text-soft);
  letter-spacing: 0.08em;
}
.hero-image-wrap {
  position: relative;
}
.hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--c-beige-soft);
  margin-right: calc(var(--pad-x) * -1);
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 78%;
  transform: scale(1.18);
  transform-origin: center 80%;
  filter: brightness(1.03) contrast(0.97) saturate(0.92);
}
.hero-image::before {
  /* inner gold frame */
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(168, 116, 58, 0.7);
  pointer-events: none;
  z-index: 3;
}
.hero-image::after {
  /* paper grain + soft top fade to muffle any text remaining at the top of the source image */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(250, 246, 239, 0.55) 0%, rgba(250, 246, 239, 0.05) 18%, rgba(250, 246, 239, 0) 35%, rgba(250, 246, 239, 0.18) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.40 0 0 0 0 0.30 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.hero-image-stamp {
  position: absolute;
  z-index: 4;
  bottom: 1.6rem; left: 1.6rem;
  font-family: var(--ff-en-sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-base);
  background: rgba(46, 38, 32, 0.78);
  padding: 0.55rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.hero-image-stamp::before {
  content: '✦';
  color: var(--c-gold);
}
/* Paper-texture hero panel — replaces photo to avoid logo conflict */
.hero-panel {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 20% 18%, rgba(168, 116, 58, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(46, 38, 32, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, #F1E8D6 0%, #E5D9C3 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 3.5rem);
}
.hero-panel::before {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(168, 116, 58, 0.65);
  pointer-events: none;
}
.hero-panel::after {
  /* subtle paper grain */
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.40 0 0 0 0 0.30 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.7;
  pointer-events: none;
}
.hero-panel-stamp {
  position: relative;
  z-index: 2;
  font-family: var(--ff-en-sans);
  font-size: 0.66rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-olive);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-panel-stamp::before {
  content: '✦';
  color: var(--c-gold);
  font-size: 0.75rem;
}
.hero-panel-quote {
  position: relative;
  z-index: 2;
  font-family: var(--ff-jp-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 2.1;
  letter-spacing: 0.12em;
  color: var(--c-olive);
  font-weight: 500;
}
.hero-panel-quote em {
  display: block;
  font-style: normal;
  font-family: var(--ff-en-serif);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: 0.04em;
  color: var(--c-text-soft);
  margin-top: 1.2rem;
  font-weight: 400;
}
.hero-panel-sign {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.hero-panel-names {
  font-family: var(--ff-en-serif);
  font-weight: 400;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--c-olive);
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.hero-panel-names small {
  display: block;
  font-family: var(--ff-en-sans);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-top: 0.4rem;
}
.hero-panel-svg {
  width: 96px; height: 96px;
  opacity: 0.85;
}
.hero-panel-svg svg { width: 100%; height: 100%; }
.hero-meta {
  position: absolute;
  bottom: 2rem;
  left: var(--pad-x);
  font-family: var(--ff-en-sans);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  display: flex;
  gap: 1.4rem;
  align-items: center;
  z-index: 4;
}
.hero-meta span:not(:last-child)::after {
  content: '/';
  margin-left: 1.4rem;
  color: var(--c-beige);
}
.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 2rem;
  font-family: var(--ff-en-sans);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  z-index: 4;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 36px;
  background: var(--c-text-soft);
  display: inline-block;
  animation: scrollBar 1.8s ease-in-out infinite;
}
@keyframes scrollBar {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* Botanical SVG decorations */
.botanical {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: 0.85;
}
.botanical svg { width: 100%; height: 100%; display: block; }
.botanical--hero-1 {
  top: 7rem; left: -3rem;
  width: 180px; height: 220px;
  transform: rotate(-12deg);
}
.botanical--hero-2 {
  bottom: -2rem; right: 5%;
  width: 220px; height: 180px;
  transform: rotate(10deg);
  opacity: 0.7;
}

/* Marquee ticker */
.ticker {
  border-top: 1px solid var(--c-beige);
  border-bottom: 1px solid var(--c-beige);
  padding: 1.2rem 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--c-base);
}
.ticker-track {
  display: inline-flex;
  gap: 3.5rem;
  animation: marquee 40s linear infinite;
  font-family: var(--ff-en-sans);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-green);
}
.ticker-track span { display: inline-flex; align-items: center; gap: 3.5rem; }
.ticker-track span::after {
  content: '✦';
  color: var(--c-gold);
  font-size: 0.7em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Concept block (Home excerpt) ---------- */
.concept-excerpt {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.concept-excerpt-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 30% 25%, rgba(46, 38, 32, 0.1) 0%, transparent 50%),
    linear-gradient(165deg, #F1E8D6 0%, #E5D8B8 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concept-excerpt-visual::after {
  content: '';
  position: absolute; inset: 1.4rem;
  border: 1px solid rgba(168, 116, 58, 0.6);
  pointer-events: none;
}
.concept-excerpt-visual-mark {
  font-family: var(--ff-en-serif);
  font-weight: 300;
  font-size: clamp(5rem, 12vw, 9rem);
  color: rgba(46, 38, 32, 0.16);
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-align: center;
}
.concept-excerpt-visual-mark small {
  display: block;
  font-family: var(--ff-en-sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--c-green);
  margin-top: 1.5rem;
}
.concept-excerpt-text p {
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
  line-height: 2.2;
}
.concept-excerpt-text p:last-of-type { margin-bottom: 2.4rem; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--ff-jp-sans);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  color: var(--c-olive);
  border-bottom: 1px solid var(--c-olive);
  padding: 0.4rem 0;
  transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 1.2rem; }
.link-arrow::after { content: '→'; }

/* ---------- Promise (5 つのお約束) ---------- */
.promise {
  background: linear-gradient(180deg, var(--c-base) 0%, #F4EEE2 100%);
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-beige);
  border-bottom: 1px solid var(--c-beige);
}
.promise-item {
  padding: 2.4rem 1.6rem;
  border-right: 1px solid var(--c-beige);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.promise-item:last-child { border-right: none; }
.promise-num {
  font-family: var(--ff-en-serif);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--c-olive);
  letter-spacing: 0.05em;
}
.promise-title {
  font-family: var(--ff-jp-serif);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--c-olive);
  font-weight: 500;
}
.promise-desc {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--c-text);
  letter-spacing: 0.04em;
}

/* ---------- Menu list ---------- */
.menu-list { margin-top: 2rem; }
.menu-cat {
  margin-bottom: 3.5rem;
}
.menu-cat-title {
  font-family: var(--ff-en-serif);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--c-olive);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}
.menu-cat-sub {
  font-family: var(--ff-jp-sans);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--c-olive);
  font-weight: 500;
  margin-bottom: 2rem;
  display: block;
}
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: baseline;
  gap: 1.6rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(46, 38, 32, 0.22);
}
.menu-row:first-of-type { border-top: 1px solid rgba(46, 38, 32, 0.22); }
.menu-name {
  font-family: var(--ff-jp-serif);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
  color: var(--c-text);
}
.menu-name small {
  display: block;
  font-family: var(--ff-jp-sans);
  font-size: 0.78rem;
  color: var(--c-text);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  opacity: 0.8;
}
.menu-time {
  font-family: var(--ff-en-sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--c-text);
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}
.menu-price {
  font-family: var(--ff-en-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-olive);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.menu-price small {
  font-family: var(--ff-jp-sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--c-text-soft);
  margin-left: 0.3rem;
}
/* per-row "税込" is redundant: top intro & note already declare it. Keep markup, hide visually. */
.menu-price small[data-tax] { display: none; }
.menu-note {
  margin-top: 2.2rem;
  padding: 1.4rem 1.6rem;
  background: var(--c-beige-soft);
  font-size: 0.82rem;
  line-height: 1.95;
  color: var(--c-text);
  letter-spacing: 0.04em;
  border-left: 2px solid var(--c-green);
}
.menu-intro {
  margin-bottom: 2.6rem;
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--c-text);
  max-width: 640px;
}

/* ---------- Staff cards ---------- */
.staff-list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}
.staff-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: center;
}
.staff-card:nth-child(even) {
  grid-template-columns: 1.5fr 1fr;
}
.staff-card:nth-child(even) .staff-photo { order: 2; }
.staff-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, rgba(46, 38, 32, 0.08) 0%, transparent 60%),
    linear-gradient(170deg, #F1E8D6 0%, #E5D8B8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.staff-card:nth-child(2) .staff-photo {
  background:
    radial-gradient(circle at 70% 30%, rgba(168, 116, 58, 0.1) 0%, transparent 60%),
    linear-gradient(195deg, #EFE5D0 0%, #DCCBAA 100%);
}
.staff-photo::after {
  content: '';
  position: absolute; inset: 0.9rem;
  border: 1px solid rgba(168, 116, 58, 0.6);
  pointer-events: none;
}
.staff-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.03) contrast(0.97) saturate(0.92);
  position: relative;
  z-index: 1;
}
/* NoV: dedicated portrait — show as-is, head higher in the frame */
.staff-card:nth-child(1) .staff-photo img {
  object-position: center 22%;
}
/* Yuki: cropped from the right half of the clean hero photo */
.staff-card:nth-child(2) .staff-photo img {
  object-position: 78% 35%;
  transform: scale(1.95);
  transform-origin: 78% 35%;
}
.staff-photo .staff-photo-overlay {
  /* paper grain + corner gradient to soften any focused-on lettering */
  position: absolute; inset: 0;
  background:
    linear-gradient(165deg, rgba(250, 246, 239, 0.22) 0%, rgba(250, 246, 239, 0) 35%, rgba(250, 246, 239, 0.25) 100%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.45 0 0 0 0 0.40 0 0 0 0 0.30 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 2;
}
.staff-photo-mark {
  position: relative;
  z-index: 2;
  font-family: var(--ff-en-serif);
  font-weight: 300;
  font-size: clamp(7rem, 16vw, 13rem);
  color: rgba(46, 38, 32, 0.22);
  letter-spacing: 0.02em;
  line-height: 0.85;
  text-align: center;
}
.staff-photo-mark small {
  display: block;
  font-family: var(--ff-en-sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--c-green);
  margin-top: 1.4rem;
  font-weight: 400;
}
.staff-photo-botanical {
  position: absolute;
  width: 70px; height: 90px;
  opacity: 0.75;
  pointer-events: none;
}
.staff-card:nth-child(1) .staff-photo-botanical { top: 1.6rem; right: 1.6rem; transform: rotate(15deg); }
.staff-card:nth-child(2) .staff-photo-botanical { bottom: 1.6rem; left: 1.6rem; transform: rotate(-15deg); }
.staff-photo-botanical svg { width: 100%; height: 100%; }
.staff-detail {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem 1.6rem;
  font-size: 0.86rem;
  line-height: 1.9;
}
.staff-detail dt {
  color: var(--c-green);
  font-family: var(--ff-en-sans);
  letter-spacing: 0.24em;
  font-size: 0.7rem;
}
.bg-soft { background: var(--c-beige-soft); }
.text-block-center { max-width: 720px; text-align: center; }
.quote-block {
  font-family: var(--ff-jp-serif);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 2.1;
  letter-spacing: 0.12em;
  color: var(--c-olive);
}
.section-bg-fade { background: linear-gradient(180deg, var(--c-base) 0%, #F4EEE2 100%); }
.section-bg-warm {
  background:
    linear-gradient(180deg, #F1E8D6 0%, #E5D9C3 100%);
  position: relative;
  overflow: hidden;
}
.section-bg-warm::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/concept-interior-02.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.16;
  filter: blur(1px) saturate(0.8);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
.section-bg-warm::after {
  /* uniform beige film over the photo so text reads on a flat tonal field */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 236, 217, 0.78) 0%, rgba(238, 226, 199, 0.85) 100%);
  z-index: 0;
  pointer-events: none;
}
.section-bg-warm > .container { position: relative; z-index: 1; }
/* Per-section backgrounds (Unsplash, royalty-free) — opacity tuned per image luminance */
.section-bg-warm--promise::before { background-image: url('../images/concept-interior-01.jpg'); background-position: center 45%; opacity: 0.14; }
.section-bg-warm--menu::before    { background-image: url('../images/menu-headspa-mask.png');    background-position: center 50%; opacity: 0.12; }
.section-bg-warm--access::before  { background-image: url('../images/hero-03.jpg');  background-position: center 60%; opacity: 0.16; }
/* legacy variants kept for back-compat */
.section-bg-warm--gallery::before { background-image: url('../images/gallery-01-long-curl.png'); }
.section-bg-warm--shampoo::before { background-image: url('../images/menu-n-oil.png'); background-size: 280px; background-repeat: repeat; opacity: 0.06; }

.section-bg-photo {
  position: relative;
  overflow: hidden;
  background: #2B2A26;
  color: var(--c-base);
}
.section-bg-photo::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('../images/gallery-01-long-curl.png');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: 0;
}
.section-bg-photo::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 42, 38, 0.45) 0%, rgba(43, 42, 38, 0.65) 100%);
  z-index: 0;
  pointer-events: none;
}
.section-bg-photo > .container { position: relative; z-index: 1; }
.section-bg-photo .section-heading { color: var(--c-base); }
.section-bg-photo .section-label { color: var(--c-beige); }
.section-bg-photo .section-label::before { background: var(--c-beige); }
.section-bg-photo .section-heading-jp { color: rgba(250, 246, 239, 0.7); }

/* Side-by-side info + image band (used in section gaps) */
.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin: clamp(3rem, 6vw, 5rem) 0;
}
.image-band-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-beige-soft);
}
.image-band-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(1.02) saturate(0.95);
}
.image-band-photo::after {
  content: '';
  position: absolute; inset: 0.9rem;
  border: 1px solid rgba(168, 116, 58, 0.55);
  pointer-events: none;
}
.image-band-text {
  background: var(--c-base);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image-band-text .section-label { margin-bottom: 1rem; }
.image-band-text h3 {
  font-family: var(--ff-jp-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  letter-spacing: 0.16em;
  color: var(--c-olive);
  margin-bottom: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}
.image-band-text p {
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--c-text);
}
.image-band--reverse .image-band-photo { order: 2; }
.image-band--reverse .image-band-text { order: 1; }

@media (max-width: 760px) {
  .image-band { grid-template-columns: 1fr; }
  .image-band--reverse .image-band-photo { order: 0; }
  .image-band--reverse .image-band-text { order: 0; }
}

/* Interior strip — full-bleed band */
.interior-strip {
  position: relative;
  height: clamp(280px, 36vw, 480px);
  overflow: hidden;
  background: var(--c-beige-soft);
}
.interior-strip img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.interior-strip::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(43, 42, 38, 0.55) 0%, rgba(43, 42, 38, 0.4) 50%, rgba(43, 42, 38, 0.3) 100%),
    linear-gradient(180deg, rgba(43, 42, 38, 0.25) 0%, rgba(43, 42, 38, 0.45) 100%);
  pointer-events: none;
}
.interior-strip-quote {
  position: absolute;
  z-index: 2;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: var(--ff-jp-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  letter-spacing: 0.22em;
  color: #FFFFFF;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.5);
  line-height: 2;
  width: 90%;
}
.interior-strip-quote em {
  display: block;
  font-style: normal;
  font-family: var(--ff-en-serif);
  font-size: 0.62em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 1.2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
  white-space: nowrap;
}
/* Override .reveal transform on absolutely-centered interior-strip-quote */
.interior-strip-quote.reveal,
.interior-strip-quote.reveal.is-visible {
  transform: translate(-50%, -50%);
}
.staff-name-en {
  font-family: var(--ff-en-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--c-olive);
  letter-spacing: 0.02em;
  line-height: 1;
}
.staff-name-jp {
  font-family: var(--ff-jp-serif);
  font-size: 0.92rem;
  letter-spacing: 0.28em;
  color: var(--c-text-soft);
  margin-top: 0.7rem;
  display: block;
}
.staff-role {
  font-family: var(--ff-en-sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-top: 1.4rem;
  display: inline-block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--c-green);
}
.staff-bio {
  margin-top: 1.6rem;
  font-size: 0.95rem;
  line-height: 2.2;
  color: var(--c-text);
}
.staff-meta {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.staff-tag {
  display: inline-block;
  padding: 0.4rem 0.95rem;
  background: var(--c-base);
  border: 1px solid rgba(46, 38, 32, 0.28);
  font-family: var(--ff-jp-sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--c-text);
  font-weight: 500;
}

/* ---------- Access ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.access-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem 2rem;
  margin-bottom: 2rem;
}
.access-info dt {
  font-family: var(--ff-en-sans);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-olive);
  font-weight: 600;
  padding-top: 0.45rem;
}
.access-info dd {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--c-text);
}
.access-info dd a { border-bottom: 1px solid rgba(46, 38, 32, 0.45); padding-bottom: 1px; font-weight: 500; }
.access-info dd a:hover { border-color: var(--c-olive); }
.access-map {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--c-beige);
}
.access-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.5) sepia(0.08) contrast(0.95);
}

/* ---------- Reservation CTA ---------- */
.cta {
  background: var(--c-olive);
  color: var(--c-base);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: 'KAMIYA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-en-serif);
  font-weight: 300;
  font-size: clamp(8rem, 20vw, 18rem);
  color: rgba(250, 246, 239, 0.04);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.cta-label {
  font-family: var(--ff-en-sans);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-beige);
  margin-bottom: 2rem;
}
.cta-title {
  font-family: var(--ff-jp-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.16em;
  line-height: 1.7;
  color: var(--c-base);
}
.cta-desc {
  margin-top: 1.8rem;
  font-size: 0.92rem;
  line-height: 2.1;
  color: var(--c-beige);
}
.cta-buttons {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--c-base);
  color: var(--c-olive);
  font-family: var(--ff-jp-sans);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
  min-height: 48px;
}
.cta-btn:hover { background: var(--c-beige); transform: translateY(-1px); }
.cta-btn--outline {
  background: transparent;
  color: var(--c-base);
  border: 1px solid var(--c-base);
}
.cta-btn--outline:hover { background: rgba(250, 246, 239, 0.1); }
.cta-btn::after { content: '→'; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--c-base);
  border-top: 1px solid var(--c-beige);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.6rem;
  padding-bottom: 3rem;
}
.footer-brand .brand-logo { font-size: 1.8rem; }
.footer-brand p {
  margin-top: 1.4rem;
  font-size: 0.86rem;
  line-height: 2;
  color: var(--c-text-soft);
}
.footer-col h4 {
  font-family: var(--ff-en-sans);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-olive);
  margin-bottom: 1.4rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col a {
  font-size: 0.86rem;
  color: var(--c-text);
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
}
.footer-col a:hover { color: var(--c-green); }
.footer-bottom {
  border-top: 1px solid var(--c-beige);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-en-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--c-text-soft);
}

/* ---------- Floating reserve (mobile) ---------- */
.float-reserve { display: none; }

/* ---------- Page header (lower pages) ---------- */
.page-hero {
  padding: 11rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, #F4EEE2 0%, var(--c-base) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-en {
  font-family: var(--ff-en-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--c-olive);
  letter-spacing: 0.02em;
  line-height: 1;
}
.page-hero-jp {
  font-family: var(--ff-jp-serif);
  font-size: 0.9rem;
  letter-spacing: 0.36em;
  color: var(--c-text-soft);
  margin-top: 1rem;
}
.page-hero-lead {
  margin-top: 2rem;
  font-size: 0.95rem;
  line-height: 2.1;
  color: var(--c-text);
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

/* ---------- Concept page essay ---------- */
.essay {
  max-width: 720px;
  margin: 0 auto;
}
.essay p {
  margin-bottom: 1.8rem;
  font-size: 1rem;
  line-height: 2.3;
  letter-spacing: 0.06em;
}
.essay p.lead {
  font-size: 1.15rem;
  color: var(--c-olive);
  letter-spacing: 0.1em;
  font-family: var(--ff-jp-serif);
  font-weight: 500;
}
.essay-divider {
  text-align: center;
  margin: 3rem 0;
  color: var(--c-olive);
  letter-spacing: 1rem;
  font-size: 0.85rem;
  opacity: 0.55;
}
.essay-h2 {
  font-family: var(--ff-jp-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--c-olive);
  margin: 2.5rem 0 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--c-beige);
  display: inline-block;
}
.essay-h2:first-of-type { margin-top: 1rem; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--c-beige-soft);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: brightness(1.02) saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.0);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 8px;
  border: 1px solid rgba(168, 116, 58, 0.35);
  pointer-events: none;
  transition: inset 0.4s ease, border-color 0.4s ease;
}
.gallery-item:hover::after {
  inset: 14px;
  border-color: rgba(250, 246, 239, 0.85);
}
.gallery-item-caption {
  position: absolute;
  left: 1.2rem; bottom: 1.2rem;
  z-index: 2;
  font-family: var(--ff-en-sans);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-base);
  background: rgba(46, 38, 32, 0.78);
  padding: 0.45rem 0.85rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover .gallery-item-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-text-soft);
  letter-spacing: 0.06em;
}
.gallery-note a {
  color: var(--c-olive);
  border-bottom: 1px solid var(--c-beige);
  padding: 0 0.2rem 1px;
}
.gallery-note a:hover { border-color: var(--c-olive); }

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 1rem; }
  .gallery-item { aspect-ratio: 5 / 6; }
}

/* ---------- Contact channels ---------- */
.contact-channels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.4rem;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.contact-channel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 1.6rem 0.6rem 1.4rem;
  background: var(--c-base);
  color: var(--c-olive);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  min-height: 130px;
}
.contact-channel:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(43, 42, 38, 0.18);
}
.contact-channel-icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.4rem;
  box-shadow: 0 2px 6px rgba(43, 42, 38, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-channel-icon svg { width: 24px; height: 24px; stroke: #fff; color: #fff; }
.contact-channel:hover .contact-channel-icon { transform: scale(1.06); box-shadow: 0 6px 16px rgba(43, 42, 38, 0.22); }
/* Brand colors per channel */
.contact-channel--phone .contact-channel-icon     { background: var(--c-olive); }
.contact-channel--line  .contact-channel-icon     { background: #06C755; }
.contact-channel--insta .contact-channel-icon     { background: linear-gradient(45deg, #f09433 0%, #e6683c 20%, #dc2743 40%, #cc2366 65%, #bc1888 100%); }
.contact-channel--web   .contact-channel-icon     { background: var(--c-gold); }
.contact-channel-label {
  font-family: var(--ff-en-sans);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-green);
}
.contact-channel-value {
  font-family: var(--ff-jp-serif);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--c-olive);
  font-weight: 500;
}

@media (max-width: 760px) {
  .contact-channels { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Video / Salon Tour ---------- */
.video-frame {
  position: relative;
  max-width: 960px;
  margin: 2rem auto 0;
  aspect-ratio: 16 / 9;
  background: #111;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(43, 42, 38, 0.18);
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-frame::after {
  content: '';
  position: absolute; inset: 10px;
  border: 1px solid rgba(168, 116, 58, 0.45);
  pointer-events: none;
  z-index: 2;
}
.video-note {
  margin-top: 1.4rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--c-text-soft);
  letter-spacing: 0.06em;
}

/* ---------- Recruit page ---------- */
.recruit-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--c-base);
  border: 1px solid var(--c-beige);
  padding: clamp(2rem, 5vw, 3.5rem);
  position: relative;
}
.recruit-card::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(168, 116, 58, 0.25);
  pointer-events: none;
}
.recruit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2rem;
}
@media (max-width: 760px) {
  .recruit-grid { grid-template-columns: 1fr; }
}
.recruit-spec dt {
  font-family: var(--ff-en-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-olive);
  margin-bottom: 0.5rem;
}
.recruit-spec dd {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--c-text);
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--c-beige);
}
.recruit-spec dd:last-of-type { border-bottom: none; }
.recruit-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.recruit-points li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--c-text);
}
.recruit-points li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0.1em;
  width: 22px; height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-gold);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive: Tablet
   ============================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-text { padding-right: 0; order: 1; }
  .hero-image-wrap { order: 2; }
  .hero-panel { aspect-ratio: 5 / 4; }
  .hero-meta, .hero-scroll { position: static; padding: 1.5rem var(--pad-x) 0; }
  .hero-scroll { justify-content: flex-end; }
  .botanical--hero-1, .botanical--hero-2 { display: none; }

  .concept-excerpt { grid-template-columns: 1fr; gap: 2.5rem; }
  .concept-excerpt-visual { aspect-ratio: 5 / 4; max-width: 480px; margin: 0 auto; }

  .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-item:nth-child(odd) { border-right: 1px solid var(--c-beige); }
  .promise-item:nth-child(even) { border-right: none; }
  .promise-item:nth-child(-n+4) { border-bottom: 1px solid var(--c-beige); }
  .promise-item:last-child { grid-column: 1 / -1; border-right: none; }

  .staff-card,
  .staff-card:nth-child(even) { grid-template-columns: 1fr; gap: 1.8rem; }
  .staff-card:nth-child(even) .staff-photo { order: 0; }
  .staff-photo { max-width: 360px; }

  .access-grid { grid-template-columns: 1fr; }
  .access-map { aspect-ratio: 4 / 3; max-width: 600px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================
   Responsive: Mobile
   ============================================ */
@media (max-width: 640px) {
  body { font-size: 15px; line-height: 1.95; }

  .site-header { padding: 0.9rem 0; }
  .site-header.is-scrolled { padding: 0.7rem 0; }

  /* Mobile menu */
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px; height: 38px;
    padding: 0;
    z-index: 60;
  }
  .menu-toggle span {
    display: block;
    width: 22px; height: 1px;
    background: var(--c-olive);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

  .global-nav {
    position: fixed;
    inset: 0;
    background: var(--c-base);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
  }
  .global-nav.is-open { transform: translateY(0); }
  .global-nav ul {
    flex-direction: column;
    gap: 1.6rem;
    margin-right: 0;
    text-align: center;
  }
  .global-nav a { font-size: 0.95rem; letter-spacing: 0.28em; }
  .global-nav .btn-reserve { font-size: 0.85rem; padding: 0.95rem 2rem; }

  .brand-logo { font-size: 1.3rem; }
  .brand-logo small { font-size: 0.55rem; }

  .hero { padding: 7rem 0 4rem; min-height: 0; }
  .hero-grid { min-height: 0; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .hero-meta { flex-wrap: wrap; gap: 0.8rem; font-size: 0.62rem; }
  .hero-meta span:not(:last-child)::after { margin-left: 0.8rem; }
  .hero-scroll { display: none; }

  .promise-grid { grid-template-columns: 1fr; }
  .promise-item { border-right: none !important; border-bottom: 1px solid var(--c-beige); }
  .promise-item:last-child { border-bottom: none; }

  .menu-row { grid-template-columns: 1fr auto; }
  .menu-time { grid-column: 1 / -1; order: 3; margin-top: 0.4rem; font-size: 0.7rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }

  /* Floating bottom bar */
  .float-reserve {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 40;
    background: var(--c-olive);
    padding: 0.7rem 1rem;
    gap: 0.6rem;
    box-shadow: 0 -2px 12px rgba(43, 42, 38, 0.12);
  }
  .float-reserve a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 0.6rem;
    color: var(--c-base);
    font-family: var(--ff-jp-sans);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    border: 1px solid rgba(250, 246, 239, 0.4);
    border-radius: 4px;
    min-height: 44px;
  }
  .float-reserve a.primary {
    background: var(--c-base);
    color: var(--c-olive);
    border-color: var(--c-base);
  }
  body { padding-bottom: 70px; }
  body.no-float { padding-bottom: 0; }

  /* Reserve button visibility on mobile: hidden in collapsed header,
     visible inside the open menu overlay. */
  .global-nav .btn-reserve { display: none; }
  .global-nav.is-open .btn-reserve { display: inline-flex; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .float-reserve, .cta, .ticker { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
}
