@charset "UTF-8";

/* =========================================================
   高松文八 はなれ — Site Styles
   ========================================================= */

:root {
	--ink: #1b1816;
	--ink-2: #262019;
	--ink-3: #322a22;
	--aka: #b3271f;
	--aka-deep: #8f1f18;
	--gold: #c2a36b;
	--gold-2: #b1925a;
	--cream: #f7f2e9;
	--cream-2: #efe7d7;
	--paper: #fbf8f2;
	--text: #2c2722;
	--muted: #877d70;
	--line: #e3d9c7;
	--white: #ffffff;

	--serif: "Shippori Mincho B1", "Noto Serif JP", "Hiragino Mincho ProN", serif;
	--sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
	--latin: "Cormorant Garamond", serif;

	--container: 1180px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
	--header-h: 92px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--sans);
	color: var(--text);
	background: var(--paper);
	line-height: 1.9;
	font-weight: 400;
	letter-spacing: .02em;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: color .3s var(--ease), opacity .3s var(--ease);
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1, h2, h3 {
	margin: 0;
	font-weight: 600;
	line-height: 1.5;
}

.container {
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
}

.section {
	padding: clamp(72px, 10vw, 140px) 0;
}

.section--dark {
	background: var(--ink);
	color: var(--cream);
	position: relative;
}

.sp-only { display: none; }

/* ---------- Section heading ---------- */
.sec-head {
	text-align: center;
	margin-bottom: clamp(40px, 5vw, 68px);
}

.sec-head__en {
	display: block;
	font-family: var(--latin);
	font-size: clamp(2.6rem, 6vw, 4.4rem);
	font-weight: 500;
	font-style: italic;
	letter-spacing: .04em;
	line-height: 1;
	color: var(--aka);
	opacity: .92;
}

.section--dark .sec-head__en,
.sec-head--light .sec-head__en { color: var(--gold); }

.sec-head__jp {
	display: inline-block;
	position: relative;
	margin-top: 14px;
	font-family: var(--serif);
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	font-weight: 600;
	letter-spacing: .22em;
	padding-left: .22em;
}

.sec-head__jp::after {
	content: "";
	display: block;
	width: 38px;
	height: 2px;
	margin: 18px auto 0;
	background: var(--aka);
}

.section--dark .sec-head__jp::after,
.sec-head--light .sec-head__jp::after { background: var(--gold); }

.sec-head--left {
	text-align: left;
}
.sec-head--left .sec-head__jp::after { margin-left: 0; }

/* ---------- Buttons ---------- */
.btn-primary,
.btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6em;
	min-width: 220px;
	padding: 16px 34px;
	font-family: var(--serif);
	font-size: 1rem;
	letter-spacing: .14em;
	border-radius: 2px;
	transition: all .35s var(--ease);
}

.btn-primary {
	background: var(--aka);
	color: var(--white);
	position: relative;
	overflow: hidden;
}
.btn-primary::after {
	content: "→";
	font-family: var(--sans);
	transition: transform .35s var(--ease);
}
.btn-primary:hover {
	background: var(--aka-deep);
	box-shadow: 0 12px 30px -12px rgba(143, 31, 24, .6);
	transform: translateY(-2px);
}
.btn-primary:hover::after { transform: translateX(5px); }

.btn-primary--gold {
	background: var(--gold);
	color: var(--ink);
}
.btn-primary--gold:hover {
	background: var(--gold-2);
	box-shadow: 0 12px 30px -12px rgba(178, 146, 90, .6);
}

.btn-ghost {
	border: 1px solid currentColor;
	color: var(--cream);
}
.btn-ghost:hover {
	background: var(--cream);
	color: var(--ink);
}

/* =========================================================
   Header
   ========================================================= */
.header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 100;
	height: var(--header-h);
	transition: background .4s var(--ease), height .4s var(--ease), box-shadow .4s var(--ease);
}

.header__inner {
	height: 100%;
	width: min(100% - 48px, 1500px);
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: 24px;
}

.header__logo {
	display: flex;
	align-items: center;
	height: 100%;
	padding: 14px 0;
	margin-right: auto;
}
.header__logo img {
	height: 100%;
	width: auto;
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .35));
	transition: filter .4s var(--ease);
}

.header.scrolled {
	height: 74px;
	background: rgba(251, 248, 242, .96);
	box-shadow: 0 6px 24px -16px rgba(0, 0, 0, .5);
	backdrop-filter: blur(6px);
}
.header.scrolled .header__logo img {
	filter: none;
}

/* global nav (desktop) */
.gnav__list {
	display: flex;
	align-items: center;
	gap: clamp(14px, 1.8vw, 30px);
}
.gnav__list a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-family: var(--serif);
	font-size: .95rem;
	letter-spacing: .1em;
	color: var(--cream);
	text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
	position: relative;
	padding-bottom: 4px;
}
.gnav__list a::before {
	content: attr(data-en);
	font-family: var(--latin);
	font-style: italic;
	font-size: .68rem;
	letter-spacing: .06em;
	color: var(--gold);
	opacity: .9;
	text-shadow: none;
}
.gnav__list a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -2px;
	width: 0;
	height: 1px;
	background: var(--gold);
	transform: translateX(-50%);
	transition: width .35s var(--ease);
}
.gnav__list a:hover::after { width: 100%; }

.header.scrolled .gnav__list a {
	color: var(--ink);
	text-shadow: none;
}

.gnav__foot { display: none; }

/* reserve button in header */
.header__cta { margin-left: 6px; }
.btn-reserve {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	line-height: 1.2;
	padding: 12px 24px;
	background: var(--aka);
	color: var(--white);
	border-radius: 2px;
	box-shadow: 0 8px 24px -14px rgba(0, 0, 0, .7);
	transition: background .3s var(--ease), transform .3s var(--ease);
}
.btn-reserve:hover { background: var(--aka-deep); transform: translateY(-2px); }
.btn-reserve__jp { font-family: var(--serif); font-size: .95rem; letter-spacing: .14em; }
.btn-reserve__en { font-family: var(--latin); font-style: italic; font-size: .62rem; opacity: .85; }

/* language switch */
.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 3px;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 100px;
	background: rgba(0, 0, 0, .18);
	backdrop-filter: blur(2px);
}
.lang-switch button {
	border: none;
	background: transparent;
	color: var(--cream);
	font-family: var(--sans);
	font-size: .72rem;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1;
	padding: 7px 11px;
	border-radius: 100px;
	cursor: pointer;
	transition: background .3s var(--ease), color .3s var(--ease);
	white-space: nowrap;
}
.lang-switch button:hover { color: #fff; }
.lang-switch button.is-active {
	background: var(--aka);
	color: #fff;
}
.header.scrolled .lang-switch--header {
	border-color: var(--line);
	background: rgba(0, 0, 0, .03);
}
.header.scrolled .lang-switch--header button { color: var(--ink); }
.header.scrolled .lang-switch--header button.is-active { color: #fff; }
.lang-switch--nav { display: none; }

/* hide decorative EN nav label when site language is not Japanese */
html[data-lang="en"] .gnav__list a::before,
html[data-lang="zh"] .gnav__list a::before { display: none; }

/* Simplified-Chinese font fallback */
html[data-lang="zh"] {
	--serif: "Noto Serif JP", "Noto Sans SC", "Songti SC", serif;
	--sans: "Noto Sans SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

/* hamburger */
.hamburger {
	display: none;
	width: 46px;
	height: 46px;
	border: none;
	background: transparent;
	cursor: pointer;
	position: relative;
	z-index: 130;
	padding: 0;
}
.hamburger span {
	position: absolute;
	left: 9px;
	width: 28px;
	height: 2px;
	background: var(--cream);
	transition: transform .4s var(--ease), opacity .3s var(--ease), background .3s;
	box-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 29px; }
.header.scrolled .hamburger span { background: var(--ink); box-shadow: none; }
.hamburger.active span { background: var(--cream); box-shadow: none; }
.hamburger.active span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(20, 17, 14, .5);
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s var(--ease), visibility .4s;
	z-index: 90;
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
	position: relative;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--cream);
	overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom {
	from { transform: scale(1.12); }
	to   { transform: scale(1); }
}
.hero__overlay {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(120% 100% at 50% 30%, rgba(0, 0, 0, .2), rgba(0, 0, 0, .62) 75%),
		linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, .25) 40%, rgba(20, 16, 12, .8));
}

.hero__content {
	padding: 110px 24px 80px;
	max-width: 920px;
	animation: fadeUp 1.2s var(--ease) both;
	animation-delay: .2s;
}
.hero__badge {
	display: inline-block;
	margin: 0 0 26px;
	padding: 7px 20px;
	font-family: var(--serif);
	font-size: clamp(.72rem, 1.6vw, .85rem);
	letter-spacing: .16em;
	color: var(--gold);
	border: 1px solid rgba(194, 163, 107, .55);
	border-radius: 100px;
	background: rgba(0, 0, 0, .2);
	backdrop-filter: blur(2px);
}
.hero__title { margin: 0; }
.hero__title-en {
	display: block;
	font-family: var(--latin);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(1.1rem, 3vw, 1.7rem);
	letter-spacing: .12em;
	color: var(--gold);
	margin-bottom: 6px;
}
.hero__title-jp {
	display: block;
	font-family: var(--serif);
	font-weight: 600;
	font-size: clamp(2.2rem, 6.4vw, 4.2rem);
	letter-spacing: .06em;
	line-height: 1.35;
	word-break: keep-all;
	overflow-wrap: break-word;
	text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}
.hero__lead {
	margin: 26px auto 40px;
	font-family: var(--serif);
	font-size: clamp(.95rem, 2.2vw, 1.18rem);
	letter-spacing: .1em;
	line-height: 2.1;
	text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
}
.hero__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	font-family: var(--latin);
	font-style: italic;
	font-size: .8rem;
	letter-spacing: .1em;
	color: var(--cream);
	opacity: .85;
}
.scroll-line {
	width: 1px;
	height: 56px;
	background: linear-gradient(var(--gold), transparent);
	position: relative;
	overflow: hidden;
}
.scroll-line::after {
	content: "";
	position: absolute;
	top: -56px;
	left: 0;
	width: 1px;
	height: 56px;
	background: linear-gradient(transparent, var(--cream));
	animation: scrollMove 2s ease-in-out infinite;
}
@keyframes scrollMove {
	to { top: 56px; }
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(34px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   News
   ========================================================= */
.news { background: var(--cream); padding-block: clamp(60px, 7vw, 96px); }
.news__list {
	max-width: 880px;
	margin-inline: auto;
	border-top: 1px solid var(--line);
}
.news__item { border-bottom: 1px solid var(--line); }
.news__item a {
	display: grid;
	grid-template-columns: 130px 76px 1fr auto;
	align-items: center;
	gap: 8px 22px;
	padding: 24px 8px;
	transition: background .3s var(--ease);
}
.news__item a:hover { background: rgba(179, 39, 31, .04); }
.news__date {
	font-family: var(--latin);
	font-size: 1.05rem;
	letter-spacing: .05em;
	color: var(--aka);
}
.news__cate {
	font-size: .74rem;
	text-align: center;
	padding: 4px 0;
	border: 1px solid var(--gold-2);
	color: var(--gold-2);
	letter-spacing: .12em;
}
.news__text {
	margin: 0;
	font-size: .98rem;
	line-height: 1.7;
	transition: color .3s;
}
.news__item a:hover .news__text { color: var(--aka); }
.news__arrow {
	width: 22px; height: 22px;
	border-radius: 50%;
	border: 1px solid var(--line);
	position: relative;
	transition: all .3s var(--ease);
}
.news__arrow::after {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	width: 5px; height: 5px;
	border-top: 1px solid var(--muted);
	border-right: 1px solid var(--muted);
	transform: translate(-65%, -50%) rotate(45deg);
}
.news__item a:hover .news__arrow { background: var(--aka); border-color: var(--aka); }
.news__item a:hover .news__arrow::after { border-color: #fff; }

/* =========================================================
   Concept
   ========================================================= */
.concept__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(40px, 6vw, 96px);
	align-items: center;
}
.concept__media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
}
.concept__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease);
}
.concept__media:hover img { transform: scale(1.05); }
.concept__media::after {
	content: "";
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(255, 255, 255, .55);
	pointer-events: none;
}
.concept__media-cap {
	position: absolute;
	bottom: 22px; left: 22px;
	font-family: var(--latin);
	font-style: italic;
	font-size: 1.2rem;
	color: #fff;
	letter-spacing: .08em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.concept__catch {
	font-family: var(--serif);
	font-size: clamp(1.5rem, 3.2vw, 2.2rem);
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: .06em;
	margin: 4px 0 28px;
	color: var(--ink);
}
.concept__text {
	margin: 0 0 20px;
	font-size: 1rem;
	color: #4a423a;
}
.concept__text strong { color: var(--aka); font-weight: 700; }

/* =========================================================
   Divider
   ========================================================= */
.divider {
	position: relative;
	height: clamp(280px, 42vw, 460px);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.divider img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.divider::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(20, 15, 11, .5);
}
.divider__quote {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(1.4rem, 4vw, 2.6rem);
	font-weight: 500;
	letter-spacing: .18em;
	color: var(--cream);
	text-shadow: 0 3px 20px rgba(0, 0, 0, .6);
	text-align: center;
	padding: 0 20px;
}

/* =========================================================
   Commitment
   ========================================================= */
.commit { background: var(--paper); }
.commit__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: clamp(28px, 4vw, 56px);
}
.commit-card {
	background: var(--white);
	box-shadow: 0 24px 50px -36px rgba(40, 30, 20, .4);
	overflow: hidden;
	transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.commit-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 36px 60px -34px rgba(40, 30, 20, .5);
}
.commit-card__media {
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.commit-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.commit-card:hover .commit-card__media img { transform: scale(1.07); }
.commit-card__body {
	padding: clamp(26px, 3vw, 40px);
	position: relative;
}
.commit-card__no {
	font-family: var(--latin);
	font-style: italic;
	font-size: 2.4rem;
	color: var(--gold);
	line-height: 1;
	display: block;
	margin-bottom: 10px;
}
.commit-card__title {
	font-family: var(--serif);
	font-size: clamp(1.2rem, 2.4vw, 1.5rem);
	letter-spacing: .06em;
	margin-bottom: 14px;
	color: var(--ink);
}
.commit-card__text {
	margin: 0;
	font-size: .95rem;
	color: #5b5248;
	line-height: 1.95;
}

/* =========================================================
   Menu
   ========================================================= */
.menu::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(120% 80% at 50% 0%, rgba(194, 163, 107, .08), transparent 60%);
	pointer-events: none;
}
.menu__note {
	text-align: center;
	margin: -28px 0 50px;
	font-size: .92rem;
	color: #cbbfa9;
	letter-spacing: .06em;
}
.menu__note span { color: #8a8170; font-size: .8rem; margin-left: .4em; }
.menu__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 2vw, 26px);
}
.menu-item {
	margin: 0;
	background: var(--ink-2);
	overflow: hidden;
	border: 1px solid rgba(194, 163, 107, .14);
}
.menu-item__media {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	position: relative;
}
.menu-item__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.menu-item:hover .menu-item__media img { transform: scale(1.08); }
.menu-item figcaption {
	padding: 18px 20px 22px;
}
.menu-item__title {
	font-family: var(--serif);
	font-size: 1.08rem;
	letter-spacing: .04em;
	color: var(--cream);
	margin-bottom: 7px;
	display: flex;
	align-items: center;
	gap: .6em;
}
.menu-item__title::before {
	content: "";
	width: 16px; height: 1px;
	background: var(--gold);
	flex: none;
}
.menu-item__desc {
	margin: 0;
	font-size: .86rem;
	color: #b3a892;
	line-height: 1.8;
}

/* =========================================================
   Scene / ご利用シーン
   ========================================================= */
.scene { background: var(--paper); }
.scene__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 5vw, 80px);
	align-items: center;
}
.scene__media {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.scene__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--ease);
}
.scene__media:hover img { transform: scale(1.05); }
.scene__media-cap {
	position: absolute;
	bottom: 18px; left: 20px;
	font-family: var(--latin);
	font-style: italic;
	font-size: 1.15rem;
	color: #fff;
	letter-spacing: .08em;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.scene__lead {
	margin: 0 0 30px;
	font-family: var(--serif);
	font-size: clamp(1.02rem, 2vw, 1.2rem);
	line-height: 2;
	letter-spacing: .04em;
	color: #4a423a;
}
.scene__list { display: grid; gap: 4px; }
.scene__list li {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 18px 0;
	border-top: 1px solid var(--line);
}
.scene__list li:last-child { border-bottom: 1px solid var(--line); }
.scene__no {
	font-family: var(--latin);
	font-style: italic;
	font-size: 1.5rem;
	line-height: 1;
	color: var(--gold-2);
	flex: none;
	padding-top: 2px;
}
.scene__list h3 {
	font-family: var(--serif);
	font-size: 1.12rem;
	letter-spacing: .05em;
	color: var(--ink);
	margin-bottom: 4px;
}
.scene__list p { margin: 0; font-size: .92rem; color: #5b5248; }

.scene__wide {
	position: relative;
	margin-top: clamp(40px, 5vw, 70px);
	height: clamp(220px, 34vw, 380px);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.scene__wide img {
	position: absolute;
	inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
.scene__wide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(20, 15, 11, .45);
}
.scene__wide-text {
	position: relative;
	z-index: 1;
	margin: 0;
	font-family: var(--serif);
	font-size: clamp(1.3rem, 3.4vw, 2.2rem);
	font-weight: 500;
	letter-spacing: .16em;
	color: var(--cream);
	text-shadow: 0 3px 18px rgba(0, 0, 0, .6);
	text-align: center;
	padding: 0 20px;
}

/* =========================================================
   Interior
   ========================================================= */
.interior { background: var(--cream); }
.interior__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: clamp(14px, 2vw, 26px);
}
.interior__item {
	position: relative;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}
.interior__item--lg {
	grid-row: span 2;
	aspect-ratio: auto;
}
.interior__item img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.interior__item:hover img { transform: scale(1.06); }
.interior__item figcaption {
	position: absolute;
	left: 0; bottom: 0;
	padding: 10px 20px;
	font-family: var(--serif);
	font-size: .95rem;
	letter-spacing: .12em;
	color: #fff;
	background: linear-gradient(to top, rgba(0, 0, 0, .65), transparent);
	width: 100%;
}
.interior__lead {
	text-align: center;
	margin: clamp(34px, 4vw, 54px) 0 0;
	font-family: var(--serif);
	font-size: clamp(1rem, 2.2vw, 1.2rem);
	line-height: 2;
	letter-spacing: .08em;
}
.interior__lead strong { color: var(--aka); }

/* =========================================================
   Stores / 店舗
   ========================================================= */
.stores { background: var(--paper); }
.stores__intro {
	text-align: center;
	max-width: 720px;
	margin: -28px auto clamp(44px, 5vw, 70px);
	font-family: var(--serif);
	font-size: clamp(1rem, 2vw, 1.18rem);
	line-height: 2;
	letter-spacing: .04em;
	color: #4a423a;
}
.store {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(30px, 4vw, 64px);
	align-items: center;
	margin-bottom: clamp(44px, 6vw, 88px);
}
.store--reverse .store__gallery { order: 2; }

.store__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.store__main {
	grid-column: 1 / -1;
	margin: 0;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}
.store__sub { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; }
.store__gallery img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--ease);
}
.store__main:hover img,
.store__sub:hover img { transform: scale(1.05); }

.store__en {
	font-family: var(--latin);
	font-style: italic;
	font-size: 1.3rem;
	letter-spacing: .08em;
	color: var(--gold-2);
	margin: 0 0 4px;
}
.store__name {
	font-family: var(--serif);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 600;
	letter-spacing: .06em;
	color: var(--ink);
	margin: 0 0 22px;
	padding-bottom: 18px;
	border-bottom: 1px solid var(--line);
}
.store__name span {
	color: var(--aka);
	margin-left: .3em;
}
.store__tag {
	font-family: var(--serif);
	font-size: .98rem;
	letter-spacing: .03em;
	color: var(--aka);
	margin: -8px 0 22px;
}
.store__dl { margin: 0 0 26px; }
.store__dl > div {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 14px;
	padding: 11px 0;
	border-bottom: 1px solid var(--line);
}
.store__dl dt {
	font-family: var(--serif);
	font-weight: 600;
	letter-spacing: .08em;
	color: var(--ink);
	font-size: .92rem;
}
.store__dl dd { margin: 0; color: #4a423a; font-size: .95rem; line-height: 1.7; }
.store__dl dd a { color: var(--aka); }

.store__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.store__tel,
.store__map {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 24px;
	font-family: var(--serif);
	font-size: .95rem;
	letter-spacing: .08em;
	border-radius: 2px;
	transition: all .3s var(--ease);
}
.store__tel {
	background: var(--aka);
	color: #fff;
}
.store__tel:hover { background: var(--aka-deep); transform: translateY(-2px); }
.store__map {
	border: 1px solid var(--gold-2);
	color: var(--gold-2);
}
.store__map:hover { background: var(--gold-2); color: #fff; }

.store-sister {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px 24px;
	margin-top: clamp(8px, 2vw, 24px);
	padding: 26px clamp(24px, 3vw, 40px);
	background: var(--cream-2);
	border-left: 3px solid var(--gold);
}
.store-sister__body { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 18px; }
.store-sister__label {
	font-family: var(--serif);
	font-size: .78rem;
	letter-spacing: .12em;
	color: #fff;
	background: var(--gold-2);
	padding: 4px 12px;
	border-radius: 100px;
}
.store-sister__name {
	font-family: var(--serif);
	font-size: 1.18rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--ink);
}
.store-sister__addr { font-size: .88rem; color: var(--muted); }
.store-sister__link {
	font-family: var(--serif);
	font-size: .95rem;
	letter-spacing: .06em;
	color: var(--aka);
	white-space: nowrap;
	transition: color .3s var(--ease);
}
.store-sister__link:hover { color: var(--aka-deep); }

.footer__group li a { display: block; }
.footer__group-link {
	display: inline-block;
	margin-top: 6px;
	font-size: .82rem;
	color: var(--gold);
}
.footer__group li a:hover .footer__group-link { text-decoration: underline; }

/* =========================================================
   Reserve
   ========================================================= */
.reserve {
	position: relative;
	padding: clamp(72px, 10vw, 130px) 0;
	color: var(--cream);
	overflow: hidden;
	text-align: center;
}
.reserve__bg { position: absolute; inset: 0; z-index: -2; }
.reserve__bg img { width: 100%; height: 100%; object-fit: cover; }
.reserve::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(18, 13, 9, .82);
}
.reserve__lead {
	margin: 0 0 36px;
	font-family: var(--serif);
	font-size: clamp(.98rem, 2vw, 1.15rem);
	letter-spacing: .08em;
}
.reserve__tel {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin-bottom: 36px;
}
.reserve__tel-label {
	font-size: .82rem;
	letter-spacing: .2em;
	color: var(--gold);
}
.reserve__tel-num {
	font-family: var(--latin);
	font-size: clamp(2.6rem, 7vw, 3.8rem);
	font-weight: 600;
	letter-spacing: .04em;
	line-height: 1.1;
	color: #fff;
}
.reserve__tel-num::before {
	content: "TEL.";
	font-size: .42em;
	vertical-align: middle;
	margin-right: .4em;
	color: var(--gold);
	letter-spacing: .1em;
}
.reserve__tel-time { font-size: .82rem; color: #c9bea8; letter-spacing: .12em; }

.reserve__btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-bottom: 28px;
}
.reserve-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 240px;
	padding: 16px 26px;
	background: rgba(255, 255, 255, .96);
	color: var(--ink);
	border-radius: 3px;
	font-family: var(--serif);
	font-size: 1rem;
	letter-spacing: .08em;
	transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.reserve-btn img { height: 26px; width: auto; }
.reserve-btn--ig img { border-radius: 7px; }
.reserve-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -16px rgba(0, 0, 0, .7); }

.reserve__sub {
	margin: 8px 0 0;
	font-size: .86rem;
	color: #c4b9a3;
	letter-spacing: .06em;
}

/* =========================================================
   Information
   ========================================================= */
.info { background: var(--paper); }
.info__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(34px, 5vw, 64px);
	align-items: stretch;
}
.info__table dl { margin: 0; border-top: 1px solid var(--line); }
.info__row {
	display: grid;
	grid-template-columns: 130px 1fr;
	gap: 16px;
	padding: 20px 6px;
	border-bottom: 1px solid var(--line);
}
.info__row dt {
	font-family: var(--serif);
	font-weight: 600;
	letter-spacing: .12em;
	color: var(--ink);
	position: relative;
	padding-left: 16px;
}
.info__row dt::before {
	content: "";
	position: absolute;
	left: 0; top: .85em;
	width: 7px; height: 7px;
	background: var(--aka);
	transform: rotate(45deg);
}
.info__row dd { margin: 0; color: #4a423a; }
.info__row dd a { color: var(--aka); border-bottom: 1px solid transparent; }
.info__row dd a:hover { border-color: var(--aka); }
.info__map {
	min-height: 320px;
	border: 1px solid var(--line);
	box-shadow: 0 24px 50px -38px rgba(40, 30, 20, .5);
	overflow: hidden;
}
.info__map iframe { display: block; width: 100%; height: 100%; min-height: 320px; }

/* =========================================================
   Recruit
   ========================================================= */
.recruit { overflow: hidden; }
.recruit__bg { position: absolute; inset: 0; z-index: 0; }
.recruit__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .14; }
.recruit__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.85fr 1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center;
}
.recruit__media {
	aspect-ratio: 4 / 5;
	overflow: hidden;
	position: relative;
}
.recruit__media::after {
	content: "";
	position: absolute; inset: 12px;
	border: 1px solid rgba(194, 163, 107, .5);
}
.recruit__media img { width: 100%; height: 100%; object-fit: cover; }
.recruit__catch {
	font-family: var(--serif);
	font-size: clamp(1.3rem, 2.8vw, 1.8rem);
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: .06em;
	margin: 4px 0 26px;
	color: #fff;
}
.recruit__list {
	display: grid;
	gap: 12px;
	margin-bottom: 26px;
}
.recruit__list li {
	position: relative;
	padding-left: 28px;
	font-size: .98rem;
	color: var(--cream);
}
.recruit__list li::before {
	content: "";
	position: absolute;
	left: 0; top: .55em;
	width: 14px; height: 14px;
	border: 1px solid var(--gold);
	border-radius: 50%;
}
.recruit__list li::after {
	content: "";
	position: absolute;
	left: 4px; top: .72em;
	width: 6px; height: 6px;
	background: var(--gold);
	border-radius: 50%;
}
.recruit__roles {
	font-size: .9rem;
	color: #c4b9a3;
	letter-spacing: .08em;
	margin: 0 0 30px;
	padding: 12px 0;
	border-top: 1px dashed rgba(194, 163, 107, .4);
	border-bottom: 1px dashed rgba(194, 163, 107, .4);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
	background: var(--ink);
	color: var(--cream);
	padding: clamp(56px, 7vw, 84px) 0 28px;
}
.footer__top {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1.1fr;
	gap: clamp(30px, 5vw, 64px);
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__logo {
	height: 96px;
	width: auto;
	margin-bottom: 18px;
	filter: drop-shadow(0 2px 10px rgba(0, 0, 0, .4));
}
.footer__addr {
	font-size: .9rem;
	line-height: 2;
	color: #c4b9a3;
	margin: 0 0 18px;
}
.footer__addr a { color: var(--gold); }
.footer__sns a {
	display: inline-block;
	width: 34px;
}
.footer__sns img { border-radius: 8px; }

.footer__nav ul { columns: 1; }
.footer__nav li { margin-bottom: 14px; }
.footer__nav a {
	font-family: var(--serif);
	font-size: .95rem;
	letter-spacing: .08em;
	position: relative;
	padding-left: 18px;
	color: var(--cream);
}
.footer__nav a::before {
	content: "";
	position: absolute;
	left: 0; top: .7em;
	width: 8px; height: 1px;
	background: var(--gold);
	transition: width .3s var(--ease);
}
.footer__nav a:hover { color: var(--gold); }
.footer__nav a:hover::before { width: 12px; }

.footer__group-ttl {
	font-family: var(--serif);
	font-size: .95rem;
	letter-spacing: .12em;
	color: var(--gold);
	margin: 0 0 18px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer__group li { margin-bottom: 16px; line-height: 1.6; }
.footer__group-name { display: block; font-weight: 500; letter-spacing: .06em; }
.footer__group-addr { display: block; font-size: .82rem; color: #9d9484; }

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	padding-top: 26px;
}
.footer__copy {
	margin: 0;
	font-family: var(--latin);
	font-size: .82rem;
	letter-spacing: .08em;
	color: #9d9484;
}
.footer__policy { font-size: .82rem; color: #9d9484; }
.footer__policy:hover { color: var(--gold); }

/* =========================================================
   Floating buttons
   ========================================================= */
.float-reserve {
	position: fixed;
	right: 0; top: 50%;
	transform: translateY(-50%);
	z-index: 80;
	writing-mode: vertical-rl;
	background: var(--aka);
	color: #fff;
	padding: 20px 12px;
	font-family: var(--serif);
	letter-spacing: .24em;
	font-size: .95rem;
	border-radius: 6px 0 0 6px;
	box-shadow: -6px 6px 20px -10px rgba(0, 0, 0, .6);
	transition: background .3s var(--ease), padding .3s var(--ease);
}
.float-reserve:hover { background: var(--aka-deep); padding-right: 18px; }

.to-top {
	position: fixed;
	right: 22px; bottom: 22px;
	z-index: 80;
	width: 50px; height: 50px;
	border: none;
	background: var(--ink);
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(14px);
	transition: all .4s var(--ease);
	box-shadow: 0 10px 24px -12px rgba(0, 0, 0, .7);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--aka); }
.to-top i {
	position: absolute;
	top: 54%; left: 50%;
	width: 10px; height: 10px;
	border-top: 2px solid var(--gold);
	border-right: 2px solid var(--gold);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.to-top:hover i { border-color: #fff; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity .9s var(--ease), transform .9s var(--ease);
	will-change: opacity, transform;
}
.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.reveal { opacity: 1; transform: none; transition: none; }
	.hero__img, .scroll-line::after { animation: none; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
	:root { --header-h: 78px; }
	.concept__grid,
	.scene__grid,
	.store,
	.info__grid,
	.recruit__inner { grid-template-columns: 1fr; }
	.store { gap: 26px; }
	.store--reverse .store__gallery { order: 0; }
	.scene__media { aspect-ratio: 16 / 9; }
	.menu__grid { grid-template-columns: repeat(3, 1fr); }
	.recruit__media { max-width: 420px; margin-inline: auto; }
	.info__map { min-height: 340px; }
	.footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
	/* mobile nav */
	.header__cta { display: none; }
	.lang-switch--header { display: none; }
	.hamburger { display: block; }

	.gnav {
		position: fixed;
		top: 0; right: 0;
		width: min(86vw, 380px);
		height: 100svh;
		background: linear-gradient(160deg, var(--ink-2), var(--ink));
		padding: calc(var(--header-h) + 20px) 38px 40px;
		display: flex;
		flex-direction: column;
		transform: translateX(100%);
		transition: transform .5s var(--ease);
		z-index: 120;
		overflow-y: auto;
		box-shadow: -20px 0 60px -30px rgba(0, 0, 0, .8);
	}
	.gnav.active { transform: translateX(0); }

	.gnav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}
	.gnav__list li { border-bottom: 1px solid rgba(255, 255, 255, .1); }
	.gnav__list a {
		flex-direction: row;
		justify-content: space-between;
		align-items: baseline;
		gap: 10px;
		color: var(--cream) !important;
		text-shadow: none;
		padding: 18px 4px;
		font-size: 1.05rem;
	}
	.gnav__list a::before {
		order: 2;
		font-size: .72rem;
	}
	.gnav__list a::after { display: none; }

	.gnav__foot {
		display: block;
		margin-top: auto;
		padding-top: 28px;
	}
	.lang-switch--nav {
		display: inline-flex;
		margin-bottom: 22px;
		border-color: rgba(255, 255, 255, .3);
	}
	.gnav__tel {
		display: flex;
		flex-direction: column;
		gap: 4px;
		margin-bottom: 20px;
	}
	.gnav__tel-label { font-size: .78rem; letter-spacing: .16em; color: var(--gold); }
	.gnav__tel-num {
		font-family: var(--latin);
		font-size: 2rem;
		font-weight: 600;
		color: #fff;
	}
	.gnav__sns a { display: inline-block; width: 38px; }
	.gnav__sns img { border-radius: 9px; }

	.commit__grid { grid-template-columns: 1fr; }
	.menu__grid { grid-template-columns: repeat(2, 1fr); }
	.float-reserve { display: none; }
}

@media (max-width: 600px) {
	.container { width: min(100% - 36px, var(--container)); }
	.sp-only { display: inline; }

	.hero__actions { flex-direction: column; align-items: center; }
	.hero__actions .btn-primary,
	.hero__actions .btn-ghost { width: 100%; max-width: 320px; }

	.news__item a {
		grid-template-columns: auto 1fr;
		gap: 6px 16px;
		padding: 20px 4px;
	}
	.news__cate { grid-row: 1; justify-self: start; padding: 3px 12px; }
	.news__text { grid-column: 1 / -1; }
	.news__arrow { display: none; }

	.concept__media { aspect-ratio: 3 / 2; }

	.menu__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.menu-item figcaption { padding: 14px 14px 16px; }
	.menu-item__title { font-size: .98rem; }
	.menu-item__desc { font-size: .8rem; }
	.menu__note { margin-top: -16px; }

	.interior__grid { grid-template-columns: 1fr; }
	.interior__item--lg { grid-row: auto; aspect-ratio: 3 / 2; }

	.reserve-btn { width: 100%; max-width: 340px; justify-content: center; }

	.info__row { grid-template-columns: 96px 1fr; gap: 10px; }

	.footer__top { grid-template-columns: 1fr; }
	.footer__bottom { justify-content: center; text-align: center; }

	.to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}
