:root {
  --ivory: #f4f0e8;
  --ivory-deep: #ece5da;
  --paper: #faf8f3;
  --white: #ffffff;
  --ink: #33302d;
  --brown: #51463e;
  --brown-deep: #302a26;
  --taupe: #9d8977;
  --taupe-soft: #cbbdac;
  --muted: #746d67;
  --line: rgba(81, 70, 62, 0.2);
  --shadow: 0 28px 70px rgba(59, 49, 42, 0.12);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 15px; line-height: 2; letter-spacing: 0.055em; }
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
:focus-visible { outline: 2px solid var(--taupe); outline-offset: 5px; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.narrow { max-width: 780px; }
.center { text-align: center; }
.section { padding: clamp(110px, 12vw, 180px) 0; }
.compact-section { padding-top: 0; }
.soft-section { background: var(--ivory); }
.eyebrow, .card-label { margin: 0 0 24px; color: var(--taupe); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.28em; line-height: 1.4; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--brown-deep); font-family: var(--serif); font-weight: 400; letter-spacing: -0.025em; }
h1 { font-size: clamp(4.6rem, 10vw, 9rem); line-height: 0.9; }
h2 { margin-bottom: 30px; font-size: clamp(3.2rem, 6vw, 6rem); line-height: 0.95; }
h3 { color: var(--brown); font-size: 1.05rem; font-weight: 600; line-height: 1.65; }
p { color: var(--muted); }
.section-lead { max-width: 640px; margin-inline: auto; font-size: 1rem; line-height: 2.25; }
.jp-heading { margin: 0 0 24px; color: var(--ink); font-family: var(--sans); font-size: clamp(1.25rem, 2.1vw, 1.75rem); font-weight: 500; letter-spacing: 0.1em; line-height: 1.8; }

.site-header { position: sticky; z-index: 100; top: 0; background: rgba(250, 248, 243, 0.9); border-bottom: 1px solid transparent; backdrop-filter: blur(18px); transition: border-color 0.3s ease, background 0.3s ease; }
.site-header.is-scrolled { background: rgba(250, 248, 243, 0.97); border-color: var(--line); }
.header-inner { min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.logo { display: inline-flex; flex-direction: column; align-items: flex-start; color: var(--brown-deep); line-height: 1; }
.logo strong { font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: 0.025em; }
.logo small { margin-top: 7px; font-size: 0.51rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; }
.logo-mark { display: none; }
.global-nav { display: flex; align-items: center; gap: 34px; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.18em; }
.global-nav > a:not(.nav-cta) { position: relative; padding: 34px 0; }
.global-nav > a:not(.nav-cta)::after { position: absolute; right: 0; bottom: 26px; left: 0; height: 1px; background: var(--brown); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.global-nav > a:hover::after, .global-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.nav-cta { padding: 13px 22px; color: var(--white); background: var(--brown-deep); border: 1px solid var(--brown-deep); letter-spacing: 0.13em; transition: color 0.25s ease, background 0.25s ease; }
.nav-cta:hover { color: var(--brown-deep); background: transparent; }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 0; background: transparent; border: 1px solid var(--line); cursor: pointer; transition: background 0.25s ease, border-color 0.25s ease; }
.nav-toggle:hover { background: rgba(157,137,119,0.1); border-color: var(--taupe); }
.nav-toggle span { width: 19px; height: 1px; display: block; margin: 5px auto; background: var(--brown-deep); transition: transform 0.25s ease, opacity 0.25s ease; }

.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 27px; border: 1px solid var(--brown-deep); border-radius: 0; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.button:hover { box-shadow: 0 12px 26px rgba(48,42,38,0.14); transform: translateY(-3px); }
.button-primary { color: var(--white); background: var(--brown-deep); }
.button-primary:hover { color: var(--brown-deep); background: transparent; }
.button-secondary { color: var(--brown-deep); background: transparent; }
.button-secondary:hover { color: var(--white); background: var(--brown-deep); }
.button-light { color: var(--brown-deep); background: var(--ivory); border-color: var(--ivory); }
.text-link { display: inline-flex; align-items: center; gap: 20px; padding-bottom: 8px; border-bottom: 1px solid var(--brown); font-family: var(--serif); font-size: 1rem; font-style: italic; transition: color 0.25s ease, gap 0.25s ease; }
.text-link:hover { color: var(--taupe); gap: 28px; }

.hero { min-height: calc(100svh - 94px); display: flex; align-items: stretch; overflow: hidden; background: var(--ivory); }
.hero-grid { width: 100%; max-width: none; display: grid; grid-template-columns: minmax(360px, 0.82fr) 1.18fr; align-items: stretch; margin: 0; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 9vw, 145px) clamp(42px, 7vw, 110px); }
.hero h1 { max-width: 650px; margin: 0 0 42px; }
.hero h1 .hero-jp { display: block; margin-top: 30px; font-family: var(--sans); font-size: clamp(1.05rem, 1.6vw, 1.35rem); font-weight: 500; letter-spacing: 0.14em; line-height: 1.8; }
.hero-lead { max-width: 540px; margin-bottom: 36px; font-size: 0.92rem; line-height: 2.2; }
.quick-info { display: flex; gap: 40px; margin: 45px 0 0; }
.quick-info div { min-width: 130px; padding-top: 14px; border-top: 1px solid var(--taupe-soft); }
.quick-info dt { color: var(--taupe); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; }
.quick-info dd { margin: 3px 0 0; color: var(--brown); font-family: var(--serif); font-size: 1.08rem; }
.hero-visual { position: relative; min-height: 680px; overflow: hidden; }
.hero-visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(48,42,38,0.08), transparent 35%); content: ""; pointer-events: none; }
.hero-visual img { height: 100%; object-fit: cover; object-position: center; filter: saturate(0.68) sepia(0.08); }
.hero-note { position: absolute; z-index: 1; right: 0; bottom: 0; padding: 23px 34px; color: var(--brown-deep); background: rgba(244,240,232,0.94); font-family: var(--serif); font-size: 0.85rem; font-style: italic; letter-spacing: 0.08em; }
.hero-note span { display: none; }
.intro-section { background: var(--paper); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 84px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); counter-reset: feature; }
.feature-card { position: relative; min-height: 320px; padding: 52px 42px; background: transparent; border-right: 1px solid var(--line); counter-increment: feature; }
.feature-card:last-child { border-right: 0; }
.feature-card::before { display: block; margin-bottom: 52px; color: var(--taupe); font-family: var(--serif); font-size: 2.3rem; font-style: italic; content: counter(feature, decimal-leading-zero); }
.feature-card h3 { margin-bottom: 16px; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.feature-card p { max-width: 280px; margin-bottom: 0; font-size: 0.86rem; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.section-heading h2 { margin-bottom: 0; }
.menu-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-preview { min-height: 350px; display: flex; flex-direction: column; justify-content: space-between; padding: 42px 36px; background: rgba(255,255,255,0.5); border: 1px solid var(--line); transition: background 0.3s ease, transform 0.3s ease; }
.menu-preview:hover { background: var(--white); transform: translateY(-6px); }
.menu-preview h3 { margin: 45px 0 16px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.menu-preview p { margin: 0; font-size: 0.82rem; }
.menu-preview strong { color: var(--brown); font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.menu-number { color: var(--taupe); font-family: var(--serif); font-size: 2.5rem; font-style: italic; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding: clamp(55px, 8vw, 95px); color: var(--white); background: var(--brown-deep); }
.cta-panel h2 { margin-bottom: 20px; color: var(--white); }
.cta-panel p { margin-bottom: 0; color: rgba(255,255,255,0.62); }
.cta-panel .eyebrow { color: var(--taupe-soft); }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 24px; flex-shrink: 0; }
.phone-link { color: var(--white); font-family: var(--serif); font-size: 2rem; line-height: 1.2; text-align: center; }
.phone-link small { display: block; margin-bottom: 9px; font-family: var(--sans); font-size: 0.56rem; letter-spacing: 0.18em; }

/* Finished home page */
.home-page .site-header { position: fixed; width: 100%; color: var(--white); background: linear-gradient(180deg, rgba(35,29,25,0.3), transparent); border-color: transparent; backdrop-filter: none; }
.home-page .site-header .logo, .home-page .site-header .global-nav { color: var(--white); }
.home-page .site-header .global-nav > a:not(.nav-cta)::after { background: var(--white); }
.home-page .site-header .nav-cta { color: var(--brown-deep); background: var(--ivory); border-color: var(--ivory); }
.home-page .site-header .nav-toggle { border-color: rgba(255,255,255,0.45); }
.home-page .site-header .nav-toggle span { background: var(--white); }
.home-page .site-header.is-scrolled { color: var(--brown-deep); background: rgba(250,248,243,0.97); border-color: var(--line); backdrop-filter: blur(18px); }
.home-page .site-header.is-scrolled .logo, .home-page .site-header.is-scrolled .global-nav { color: var(--brown-deep); }
.home-page .site-header.is-scrolled .global-nav > a:not(.nav-cta)::after { background: var(--brown); }
.home-page .site-header.is-scrolled .nav-cta { color: var(--white); background: var(--brown-deep); border-color: var(--brown-deep); }
.home-page .site-header.is-scrolled .nav-toggle { border-color: var(--line); }
.home-page .site-header.is-scrolled .nav-toggle span { background: var(--brown-deep); }
.home-hero { position: relative; min-height: 100svh; display: grid; align-items: center; overflow: hidden; background: var(--brown-deep); }
.home-hero::after { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(35,29,25,0.78) 0%, rgba(35,29,25,0.58) 34%, rgba(35,29,25,0.18) 54%, rgba(35,29,25,0) 72%), linear-gradient(0deg, rgba(35,29,25,0.2), transparent 42%); content: ""; }
.home-hero-image { position: absolute; top: 0; left: 0; width: 120%; max-width: none; height: 100%; object-fit: cover; object-position: center; }
.home-hero-content { position: relative; z-index: 2; padding-top: 120px; color: var(--white); }
.home-hero-content .eyebrow { color: #ded2c5; }
.home-hero h1 { max-width: 650px; margin: 0 0 40px; color: var(--white); font-size: clamp(4.5rem, 7.4vw, 7.5rem); line-height: 0.88; text-shadow: 0 3px 28px rgba(35,29,25,0.34); }
.home-hero-jp { max-width: 500px; margin: 0 0 38px; color: rgba(255,255,255,0.94); font-size: 0.98rem; font-weight: 500; letter-spacing: 0.12em; line-height: 2.15; text-shadow: 0 2px 16px rgba(35,29,25,0.5); }
.button-ivory { color: var(--brown-deep); background: var(--ivory); border-color: var(--ivory); }
.button-ivory:hover { color: var(--ivory); background: transparent; }
.button-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,0.72); }
.button-outline-light:hover { color: var(--brown-deep); background: var(--ivory); border-color: var(--ivory); }
.home-scroll { position: absolute; z-index: 2; right: 36px; bottom: 42px; margin: 0; color: rgba(255,255,255,0.72); font-size: 0.56rem; letter-spacing: 0.28em; writing-mode: vertical-rl; }
.home-scroll::after { width: 1px; height: 62px; display: block; margin: 16px auto 0; background: rgba(255,255,255,0.5); content: ""; }
.home-about { background: var(--paper); }
.home-about-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(70px, 10vw, 150px); align-items: stretch; }
.home-about h2 { max-width: 700px; margin-bottom: 0; }
.home-about-lead { min-width: 0; display: flex; flex-direction: column; }
.home-about-image { width: 100%; margin: auto 0 0; padding-top: clamp(40px, 5vw, 68px); }
.home-about-image img { width: 100%; max-height: 520px; aspect-ratio: 12 / 7; object-fit: cover; object-position: center 58%; filter: saturate(0.72) sepia(0.05); border: 1px solid var(--line); }
.home-about-copy { display: flex; flex-direction: column; margin-top: 86px; padding-top: 42px; border-top: 1px solid var(--line); }
.home-about-copy p { margin-bottom: 24px; }
.home-about-copy .text-link { margin-top: auto; }
.home-menu .section-heading p:last-child { margin: 16px 0 0; }
.menu-card-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; }
.menu-card-meta .card-label { margin: 0; }
.menu-price { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-top: 25px; border-top: 1px solid var(--line); }
.menu-price small { color: var(--taupe); font-size: 0.55rem; font-weight: 600; letter-spacing: 0.2em; }
.home-access { background: var(--paper); }
.home-access-panel { display: grid; grid-template-columns: 1fr 0.82fr; gap: clamp(60px, 9vw, 130px); align-items: center; padding: clamp(60px, 9vw, 105px); color: var(--white); background: var(--brown-deep); }
.home-access-panel .eyebrow { color: var(--taupe-soft); }
.home-access-panel h2 { margin-bottom: 0; color: var(--white); }
.home-access-jp { margin-bottom: 35px; color: rgba(255,255,255,0.68); }
.home-access-info dl { margin: 0 0 38px; }
.home-access-info dl div { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
.home-access-info dt { color: var(--taupe-soft); font-size: 0.56rem; font-weight: 600; letter-spacing: 0.18em; }
.home-access-info dd { margin: 0; color: rgba(255,255,255,0.82); font-size: 0.82rem; }

.page-hero { position: relative; isolation: isolate; overflow: hidden; padding: clamp(90px, 12vw, 160px) 0 clamp(80px, 10vw, 135px); text-align: center; background: var(--ivory); border-bottom: 1px solid var(--line); }
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 0 0 30px; font-size: clamp(5rem, 12vw, 10rem); }
.page-hero h1 small { display: block; margin-top: 24px; color: var(--ink); font-family: var(--sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.22em; }
.page-hero p:last-child { max-width: 560px; margin: 0 auto; font-size: 0.88rem; }

/* Quiet paw-print accents */
.page-hero::before,
.soft-section::after,
.home-about::before,
.home-access::after,
.salon-facts-section::before,
.notice-box::after,
.site-footer::before {
  position: absolute;
  pointer-events: none;
  background-image: url("images/paw-print.svg"), url("images/paw-print.svg"), url("images/paw-print.svg");
  background-repeat: no-repeat;
  content: "";
}
.page-hero::before { top: 18%; right: 5%; width: 190px; height: 160px; background-position: 0 100%, 48% 52%, 100% 0; background-size: 48px, 38px, 30px; opacity: 0.09; transform: rotate(-12deg); }
.soft-section { position: relative; isolation: isolate; overflow: hidden; }
.soft-section > .container { position: relative; z-index: 1; }
.soft-section::after { right: 2%; bottom: 5%; width: 150px; height: 130px; background-position: 0 100%, 50% 50%, 100% 0; background-size: 40px, 32px, 25px; opacity: 0.06; transform: rotate(14deg); }
.home-about, .home-access { position: relative; isolation: isolate; overflow: hidden; }
.home-about > .container, .home-access > .container { position: relative; z-index: 1; }
.home-about::before { top: 10%; right: 3%; width: 165px; height: 145px; background-position: 0 100%, 48% 52%, 100% 0; background-size: 42px, 34px, 27px; opacity: 0.065; transform: rotate(-18deg); }
.home-access::after { left: 2%; bottom: 4%; width: 150px; height: 125px; background-position: 0 100%, 50% 50%, 100% 0; background-size: 38px, 30px, 24px; opacity: 0.055; transform: rotate(16deg); }
.notice-box { position: relative; overflow: hidden; }
.notice-box::after { top: 20px; right: 22px; width: 72px; height: 72px; background-position: center; background-size: 58px; opacity: 0.055; transform: rotate(14deg); }
.section-intro { max-width: 720px; margin-bottom: 70px; }
.section-intro h2 { margin-bottom: 22px; }
.section-intro p:last-child { max-width: 560px; margin-bottom: 0; }
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin-bottom: 72px; border-bottom: 1px solid var(--line); }
.filter-button { min-width: 140px; padding: 14px 22px; color: var(--muted); background: transparent; border: 0; border-bottom: 2px solid transparent; cursor: pointer; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em; }
.filter-button:hover, .filter-button.is-active { color: var(--brown-deep); border-bottom-color: var(--brown-deep); }
.filter-button:focus-visible { outline: 2px solid var(--taupe); outline-offset: 4px; }
.filter-status { margin: -48px 0 34px; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.08em; text-align: right; }
.menu-catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-product-card { min-height: 340px; display: flex; flex-direction: column; justify-content: space-between; padding: 40px 34px 32px; background: rgba(255,255,255,0.48); border: 1px solid var(--line); transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease; }
.menu-product-card:hover { background: var(--white); border-color: rgba(126,105,86,0.35); transform: translateY(-5px); }
.menu-product-card[hidden] { display: none; }
.menu-product-card h2 { margin: 34px 0 16px; font-size: clamp(1.65rem, 2.6vw, 2.35rem); line-height: 1.25; }
.menu-product-card p:not(.catalog-price) { margin: 0; font-size: 0.82rem; line-height: 2; }
.catalog-price { display: flex; align-items: baseline; justify-content: flex-end; gap: 12px; margin: 32px 0 0; padding-top: 22px; color: var(--brown-deep); border-top: 1px solid var(--line); font-family: var(--serif); font-size: 1.45rem; }
.catalog-price small { color: var(--taupe); font-family: var(--sans); font-size: 0.54rem; font-weight: 600; letter-spacing: 0.18em; }
.price-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.price-card { display: grid; grid-template-columns: 0.8fr 1.2fr; align-items: start; gap: 80px; padding: 62px 0; border-bottom: 1px solid var(--line); }
.price-card[hidden] { display: none; }
.price-card h2 { margin: 8px 0 20px; font-size: clamp(2.1rem, 4vw, 3.4rem); }
.price-card p { max-width: 440px; margin: 0; font-size: 0.85rem; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 15px 12px; border-bottom: 1px solid var(--line); text-align: left; }
th { color: var(--taupe); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.14em; }
td { font-size: 0.83rem; }
td:last-child { color: var(--brown-deep); font-family: var(--serif); font-size: 1rem; white-space: nowrap; }
.simple-price-list { margin: 0; padding: 0; list-style: none; }
.simple-price-list li { display: flex; justify-content: space-between; gap: 30px; padding: 16px 4px; border-bottom: 1px solid var(--line); }
.simple-price-list strong { color: var(--brown-deep); font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.notice-box { margin-top: 80px; padding: 45px 50px; background: var(--ivory); border-left: 2px solid var(--taupe); }
.notice-box h2 { margin-bottom: 18px; font-family: var(--serif); font-size: 1.8rem; }
.notice-box ul { margin: 0; padding-left: 1.3em; color: var(--muted); font-size: 0.82rem; }

.story-grid { display: grid; grid-template-columns: 1.03fr 0.97fr; align-items: center; gap: clamp(60px, 9vw, 130px); }
.story-image { position: relative; }
.story-image::after { position: absolute; z-index: -1; right: -28px; bottom: -28px; width: 70%; height: 70%; background: var(--ivory-deep); content: ""; }
.story-image img { aspect-ratio: 1 / 1; object-fit: cover; object-position: 68% center; filter: saturate(0.72) sepia(0.06); }
.story-copy h2 { margin-bottom: 35px; }
.story-copy p:not(.eyebrow) { margin-bottom: 24px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 70px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-card { min-height: 300px; padding: 46px 36px; border-right: 1px solid var(--line); }
.value-card:last-child { border-right: 0; }
.value-card span { color: var(--taupe); font-family: var(--serif); font-size: 2.5rem; font-style: italic; }
.value-card h3 { margin: 45px 0 14px; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.value-card p { margin: 0; font-size: 0.84rem; }
.salon-facts-section { position: relative; isolation: isolate; overflow: hidden; background: var(--brown-deep); }
.salon-facts-section > .container { position: relative; z-index: 1; }
.salon-facts-section::before { top: 8%; right: 3%; width: 170px; height: 150px; background-position: 0 100%, 50% 50%, 100% 0; background-size: 44px, 35px, 28px; opacity: 0.075; filter: invert(1); transform: rotate(-15deg); }
.salon-facts-section .section-heading { color: var(--white); }
.salon-facts-section .section-heading h2 { color: var(--white); }
.salon-facts-section .section-heading p { color: rgba(255,255,255,0.62); }
.salon-facts-section .eyebrow { color: var(--taupe-soft); }
.salon-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.16); border-bottom: 1px solid rgba(255,255,255,0.16); }
.salon-fact { min-height: 330px; padding: 42px 30px; color: rgba(255,255,255,0.68); border-right: 1px solid rgba(255,255,255,0.16); }
.salon-fact:last-child { border-right: 0; }
.salon-fact-number { display: block; margin-bottom: 34px; color: var(--taupe-soft); font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.6rem); font-style: italic; line-height: 1; }
.salon-fact .card-label { color: rgba(255,255,255,0.5); }
.salon-fact h3 { margin: 32px 0 15px; color: var(--white); font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.salon-fact p:last-child { margin: 0; font-size: 0.8rem; }
.fiction-note { margin-top: 26px; color: var(--muted); font-size: 0.7rem; line-height: 1.8; }
.salon-facts-section .fiction-note { color: rgba(255,255,255,0.44); }
.staff-panel { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 60px; max-width: 940px; padding: 65px; background: var(--ivory); }
.staff-avatar { width: 180px; aspect-ratio: 1; display: grid; place-items: center; color: var(--ivory); background: var(--taupe); border-radius: 50%; font-family: var(--serif); font-size: 4.5rem; font-style: italic; }
.staff-panel h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3.2rem); }
.staff-panel p:last-child { margin-bottom: 0; }
.mini-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 52px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mini-cta h2 { margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3.5rem); }
.mini-cta p { margin: 0; }

.access-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: clamp(55px, 8vw, 110px); align-items: start; }
.map-frame { overflow: hidden; background: var(--ivory); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: clamp(400px, 48vw, 540px); min-height: 0; display: block; border: 0; filter: saturate(0.62) sepia(0.08) contrast(0.96); }
.map-link { display: flex; align-items: center; justify-content: flex-end; min-height: 54px; padding: 12px 18px; color: var(--brown); background: var(--paper); border-top: 1px solid var(--line); font-size: 0.67rem; letter-spacing: 0.08em; }
.map-link:hover { color: var(--brown-deep); background: var(--ivory); }
.access-details h2 { margin-bottom: 32px; }
.info-list { margin: 0 0 38px; }
.info-list div { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list dt { color: var(--taupe); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.12em; }
.info-list dd { margin: 0; }
.info-list small { color: var(--muted); }
.access-fiction-note { max-width: 440px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.route-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.route-card { display: flex; gap: 28px; padding: 52px 45px; border-right: 1px solid var(--line); }
.route-card:last-child { border-right: 0; }
.route-card > span { color: var(--taupe); font-family: var(--serif); font-size: 2rem; }
.route-card h2 { margin-bottom: 12px; font-family: var(--serif); font-size: 1.65rem; }
.route-card p { margin-bottom: 0; font-size: 0.84rem; }
.hours-panel { display: grid; grid-template-columns: 0.58fr 1.42fr; align-items: center; gap: 70px; }
.hours-panel h2 { margin-bottom: 10px; }
.hours-table th, .hours-table td { text-align: center; }
.hours-table td { color: var(--brown); }
.table-note { margin: 12px 0 0; font-size: 0.74rem; }

.site-footer { position: relative; isolation: isolate; overflow: hidden; padding: 90px 0 28px; color: rgba(255,255,255,0.86); background: var(--brown-deep); }
.site-footer > .container { position: relative; z-index: 1; }
.site-footer::before { top: 32px; right: 4%; width: 145px; height: 125px; background-position: 0 100%, 50% 50%, 100% 0; background-size: 38px, 30px, 24px; opacity: 0.06; filter: invert(1); transform: rotate(-12deg); }
.footer-inner { display: grid; grid-template-columns: 1.25fr 0.9fr 0.85fr; gap: 70px; align-items: start; }
.footer-logo { margin-bottom: 25px; color: var(--white); }
.footer-tagline { max-width: 330px; color: rgba(255,255,255,0.55); font-family: var(--serif); font-size: 1rem; font-style: italic; line-height: 1.8; }
.footer-heading { margin: 0 0 20px; color: var(--taupe-soft); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.23em; }
.footer-info { margin: 0; color: rgba(255,255,255,0.62); font-size: 0.78rem; }
.footer-info strong { color: var(--white); font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.footer-nav { display: grid; gap: 12px; font-size: 0.69rem; letter-spacing: 0.12em; }
.footer-nav a { width: fit-content; border-bottom: 1px solid transparent; }
.footer-nav a:hover { border-color: var(--taupe-soft); }
.copyright { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.38); font-size: 0.6rem; letter-spacing: 0.12em; }

@media (hover: hover) {
  .feature-card, .value-card, .route-card, .salon-fact, .staff-panel { transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease; }
  .feature-card:hover, .value-card:hover, .route-card:hover { background: rgba(255,255,255,0.58); box-shadow: 0 18px 42px rgba(59,49,42,0.07); transform: translateY(-5px); }
  .salon-fact:hover { background: rgba(255,255,255,0.055); transform: translateY(-5px); }
  .staff-panel:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
}

.back-to-top { position: fixed; z-index: 90; right: 28px; bottom: 28px; width: 54px; height: 54px; display: grid; place-items: center; padding: 0; color: var(--white); background: rgba(48,42,38,0.92); border: 1px solid rgba(255,255,255,0.22); border-radius: 50%; box-shadow: 0 14px 34px rgba(48,42,38,0.2); cursor: pointer; font-family: var(--serif); font-size: 1.25rem; opacity: 0; pointer-events: none; transform: translateY(14px); transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease; }
.back-to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top:hover { background: var(--taupe); transform: translateY(-3px); }

.js .reveal { opacity: 0; filter: blur(3px); transform: translateY(24px); transition: opacity 0.85s ease, filter 0.85s ease, transform 0.85s cubic-bezier(.2,.7,.2,1); transition-delay: var(--reveal-delay, 0ms); }
.js .reveal.is-visible { opacity: 1; filter: none; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; filter: none; transform: none; transition: none; }
  .button, .text-link, .back-to-top, .feature-card, .value-card, .route-card, .salon-fact, .staff-panel { transition: none; }
  .button:hover, .back-to-top:hover, .feature-card:hover, .value-card:hover, .route-card:hover, .salon-fact:hover, .staff-panel:hover { transform: none; }
}

@media (max-width: 980px) {
  .container { width: min(calc(100% - 48px), var(--container)); }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-nav { position: absolute; top: 100%; right: 0; width: min(86vw, 420px); height: calc(100svh - 94px); display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 45px; overflow-y: auto; visibility: hidden; background: var(--paper); box-shadow: -20px 30px 60px rgba(48,42,38,0.12); pointer-events: none; transform: translateX(105%); transition: transform 0.35s ease, visibility 0.35s; }
  .global-nav.is-open { visibility: visible; pointer-events: auto; transform: translateX(0); }
  .global-nav > a:not(.nav-cta) { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.3rem; }
  .global-nav > a:not(.nav-cta)::after { display: none; }
  .global-nav > a[aria-current="page"] { color: var(--taupe); }
  .nav-cta { margin-top: 28px; text-align: center; }
  .home-page .site-header:not(.is-scrolled) .global-nav.is-open { color: var(--brown-deep); }
  .home-page .site-header:not(.is-scrolled) .global-nav.is-open .nav-cta { color: var(--white); background: var(--brown-deep); border-color: var(--brown-deep); }
  .home-hero::after { background: linear-gradient(90deg, rgba(35,29,25,0.76) 0%, rgba(35,29,25,0.52) 48%, rgba(35,29,25,0.12) 76%), linear-gradient(0deg, rgba(35,29,25,0.24), transparent 50%); }
  .home-hero-image { width: 118%; object-position: 35% center; }
  .home-hero h1 { max-width: 580px; font-size: clamp(4.4rem, 10vw, 6.4rem); }
  .home-about-grid, .home-access-panel { grid-template-columns: 1fr; }
  .home-about-copy { max-width: 720px; margin-top: 0; }
  .home-about-image { width: 100%; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 620px; }
  .hero-visual { min-height: 72vw; }
  .feature-grid, .value-grid { grid-template-columns: 1fr; }
  .feature-card, .value-card { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-card:last-child, .value-card:last-child { border-bottom: 0; }
  .menu-preview-grid { grid-template-columns: 1fr; }
  .menu-preview { min-height: 270px; }
  .menu-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card { grid-template-columns: 1fr; gap: 38px; }
  .story-grid, .access-grid { grid-template-columns: 1fr; }
  .story-image { max-width: 720px; }
  .salon-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .salon-fact:nth-child(2) { border-right: 0; }
  .salon-fact:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.16); }
  .access-grid { gap: 70px; }
  .hours-panel { grid-template-columns: 1fr; gap: 35px; }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; gap: 36px; }
}

@media (max-width: 680px) {
  body { font-size: 14px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 90px 0; }
  .header-inner { min-height: 78px; }
  .logo strong { font-size: 1.7rem; }
  .global-nav { height: calc(100svh - 78px); }
  h2 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
  .home-hero { min-height: 0; display: block; background: var(--brown-deep); }
  .home-hero::after { background: linear-gradient(180deg, rgba(35,29,25,0.06) 0%, rgba(35,29,25,0.12) 30%, rgba(35,29,25,0.62) 58%, rgba(35,29,25,0.9) 100%), linear-gradient(90deg, rgba(35,29,25,0.42), rgba(35,29,25,0.06) 82%); }
  .home-hero-image { width: 100%; height: clamp(270px, 72vw, 350px); object-position: center 44%; }
  .home-hero-content { padding-top: clamp(350px, 92vw, 420px); padding-bottom: 56px; }
  .home-hero h1 { max-width: 100%; margin-bottom: 28px; font-size: clamp(3.65rem, 17vw, 5rem); line-height: 0.9; }
  .home-hero-jp { margin-bottom: 28px; font-size: 0.88rem; letter-spacing: 0.08em; line-height: 1.95; }
  .home-scroll { display: none; }
  .home-about-grid { gap: 55px; }
  .home-about-image { width: 100%; padding-top: 32px; }
  .home-about-image img { max-height: none; aspect-ratio: 12 / 7; object-position: center 56%; }
  .home-about-copy { padding-top: 32px; }
  .home-access-panel { gap: 45px; padding: 52px 26px; }
  .home-access-info dl div { grid-template-columns: 74px 1fr; }
  .hero-copy { min-height: 570px; padding: 72px 28px; }
  .hero h1 { font-size: clamp(4rem, 20vw, 6.2rem); }
  .hero-visual { min-height: 116vw; }
  .hero-note { right: 0; padding: 17px 20px; }
  .button-row { flex-direction: column; }
  .button-row .button { width: 100%; }
  .quick-info { gap: 18px; }
  .quick-info div { min-width: 0; flex: 1; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 48px; }
  .feature-card, .value-card, .menu-preview { padding: 36px 26px; }
  .feature-card::before { margin-bottom: 28px; }
  .cta-panel { align-items: stretch; flex-direction: column; padding: 54px 28px; text-align: left; }
  .cta-actions { align-items: stretch; }
  .page-hero { padding: 85px 0 78px; }
  .page-hero h1 { font-size: clamp(4rem, 23vw, 6.2rem); }
  .page-hero::before { top: 10%; right: -26px; width: 130px; height: 120px; background-size: 36px, 29px, 23px; opacity: 0.07; }
  .soft-section::after, .home-about::before, .home-access::after, .salon-facts-section::before, .site-footer::before { transform: scale(0.78) rotate(-12deg); }
  .back-to-top { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .filter-bar { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; margin-bottom: 48px; }
  .filter-button { min-width: auto; flex: 0 0 auto; padding-inline: 18px; }
  .filter-status { margin: -28px 0 30px; text-align: left; }
  .menu-catalog-grid { grid-template-columns: 1fr; }
  .menu-product-card { min-height: 300px; padding: 34px 26px 28px; }
  .price-card { padding: 48px 0; }
  .price-table-wrap table, .hours-table { min-width: 0; }
  .price-table-wrap thead { display: none; }
  .price-table-wrap tr { display: grid; grid-template-columns: 1fr 1fr; padding: 15px 0; border-bottom: 1px solid var(--line); }
  .price-table-wrap td { display: grid; gap: 3px; padding: 3px 0; border: 0; }
  .price-table-wrap td:first-child { grid-row: span 2; align-content: center; }
  .price-table-wrap td:nth-child(2), .price-table-wrap td:nth-child(3) { text-align: right; }
  .price-table-wrap td::before { color: var(--taupe); font-size: 0.55rem; letter-spacing: 0.12em; content: attr(data-label); }
  .notice-box { margin-top: 55px; padding: 30px 25px; }
  .story-grid { gap: 62px; }
  .story-image::after { right: -12px; bottom: -12px; }
  .story-image img { aspect-ratio: 1 / 1; object-position: 72% center; }
  .salon-facts-grid { grid-template-columns: 1fr; }
  .salon-fact { min-height: 0; padding: 38px 26px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.16); }
  .salon-fact:last-child { border-bottom: 0; }
  .salon-fact-number { margin-bottom: 24px; }
  .staff-panel { grid-template-columns: 1fr; padding: 44px 28px; }
  .staff-avatar { width: 120px; }
  .mini-cta { align-items: stretch; flex-direction: column; }
  .map-frame iframe { height: 360px; }
  .info-list div { grid-template-columns: 80px 1fr; }
  .route-grid { grid-template-columns: 1fr; }
  .route-card { padding: 38px 18px; border-right: 0; border-bottom: 1px solid var(--line); }
  .route-card:last-child { border-bottom: 0; }
  .hours-table thead { display: none; }
  .hours-table, .hours-table tbody, .hours-table tr, .hours-table th, .hours-table td { display: block; }
  .hours-table tr { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
  .hours-table th { grid-column: 1 / -1; padding: 12px 0; border: 0; text-align: left; }
  .hours-table td { position: relative; padding: 28px 2px 8px; border: 1px solid var(--line); }
  .hours-table td::before { position: absolute; top: 5px; left: 0; width: 100%; color: var(--taupe); font-size: 0.55rem; content: attr(data-day); }
  .footer-inner { grid-template-columns: 1fr; gap: 45px; }
  .copyright { align-items: flex-start; flex-direction: column; margin-top: 55px; }
}
