/**
 * Kobido Kraków — main stylesheet
 * Aesthetic: cool Kyoto mist · forest ink · celadon accent
 */

:root {
	/* Text hierarchy — one ink family */
	--ink: #15201b;
	--ink-soft: #2f3a34;
	--muted: #5c675f;
	--paper: #f5f7f6;
	--mist: #e7ece9;
	--mist-deep: #d5ddd8;
	--celadon: #3f6b55;
	--celadon-deep: #2c4e3d;
	--celadon-soft: #c9d9d0;
	--blush: #b9958c;
	--line: rgba(21, 32, 27, 0.1);
	--line-strong: rgba(21, 32, 27, 0.18);
	--white: #ffffff;
	--shadow-soft: 0 18px 40px rgba(21, 32, 27, 0.08);

	--font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--font-body: "Figtree", "Segoe UI", sans-serif;

	/* Type scale */
	--text-xs: 0.78rem;
	--text-sm: 0.92rem;
	--text-md: 1.05rem;
	--text-base: 1.08rem;
	--text-lead: 1.12rem;

	--space-xs: 0.5rem;
	--space-sm: 0.875rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4.5rem;
	--space-2xl: 7rem;

	--radius: 2px;
	--header-h: 4.5rem;
	--container: 1120px;
	--narrow: 720px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: var(--text-base);
	line-height: 1.7;
	color: var(--ink-soft);
	background: var(--paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

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

a {
	color: var(--celadon-deep);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
	transition: color 0.25s var(--ease);
}

a:hover {
	color: var(--ink);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--ink);
	line-height: 1.15;
	letter-spacing: -0.01em;
	margin: 0;
}

p {
	margin: 0 0 1rem;
}

p:last-child {
	margin-bottom: 0;
}

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

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

.container.narrow,
.narrow {
	width: min(100% - 2.5rem, var(--narrow));
	margin-inline: auto;
}

.text-center {
	text-align: center;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--ink);
	color: var(--white);
	padding: 0.75rem 1rem;
	z-index: 1000;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
}

/* ---------- Header ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(245, 247, 246, 0.86);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.site-header.is-scrolled {
	border-bottom-color: var(--line);
	background: rgba(245, 247, 246, 0.94);
}

.site-header__inner {
	width: min(100% - 2.5rem, var(--container));
	margin-inline: auto;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.site-brand {
	text-decoration: none;
	color: var(--ink);
	flex-shrink: 0;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	transform: translateY(5px);
}

.site-logo__mark {
	width: 2.85rem;
	height: 2.85rem;
	color: #3a433d;
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.site-logo__mark svg,
.site-logo__mark-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.site-logo__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.28rem;
	line-height: 1;
	padding-top: 0.05rem;
}

.site-logo__name {
	font-family: var(--font-display);
	font-size: 1.12rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink);
	white-space: nowrap;
}

.site-logo__tagline {
	font-family: var(--font-body);
	font-size: 0.62rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--muted);
	white-space: nowrap;
}

.site-brand__name {
	font-family: var(--font-display);
	font-size: 1.55rem;
	font-weight: 500;
	letter-spacing: 0.01em;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo-link img {
	max-height: 48px;
	width: auto;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.site-nav__list {
	display: flex;
	align-items: center;
	gap: 1.35rem;
}

.site-nav__list a {
	font-size: var(--text-sm);
	font-weight: 500;
	color: var(--ink-soft);
	text-decoration: none;
	letter-spacing: 0.01em;
}

.site-nav__list a:hover,
.site-nav__list .current-menu-item > a {
	color: var(--ink);
}

.nav-toggle {
	display: none;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	position: relative;
}

.nav-toggle__bar {
	display: block;
	width: 1.35rem;
	height: 1.5px;
	background: var(--ink);
	margin: 0.35rem auto;
	transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:first-child {
	transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:last-child {
	transform: translateY(-3.5px) rotate(-45deg);
}

/* ---------- Buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 2.85rem;
	padding: 0.7rem 1.35rem;
	border: 1px solid transparent;
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:hover {
	transform: translateY(-1px);
}

.btn--primary {
	background: var(--celadon);
	color: var(--white);
	border-color: var(--celadon);
}

.btn--primary:hover {
	background: var(--celadon-deep);
	border-color: var(--celadon-deep);
	color: var(--white);
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: var(--line-strong);
}

.btn--ghost:hover {
	border-color: var(--ink);
	color: var(--ink);
}

.btn--light {
	background: var(--white);
	color: var(--celadon-deep);
	border-color: var(--white);
}

.btn--light:hover {
	background: var(--mist);
	color: var(--ink);
}

.btn--nav {
	background: #6a7366;
	color: var(--white);
	min-height: 2.4rem;
	padding-inline: 1.1rem;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 3px;
}

.btn--nav:hover {
	background: #556055;
	color: var(--white);
}

.btn--xl {
	min-height: 3.25rem;
	padding-inline: 1.75rem;
	font-size: 1rem;
}

.btn--hero {
	min-height: 3rem;
	padding: 0.8rem 1.45rem 0.8rem 1.55rem;
	border-radius: 3px;
	background: #6a7366;
	border-color: #6a7366;
	color: #fff;
	font-size: 0.86rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	gap: 0.85rem;
}

.btn--hero:hover {
	background: #556055;
	border-color: #556055;
	color: #fff;
	transform: translateY(-1px);
}

.btn__arrow {
	font-size: 1.05rem;
	line-height: 1;
	transition: transform 0.3s var(--ease);
}

.btn--hero:hover .btn__arrow {
	transform: translateX(3px);
}

.btn-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	align-items: center;
}

.btn-row--center {
	justify-content: center;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--celadon-deep);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	padding-bottom: 0.1rem;
}

.text-link::after {
	content: "→";
	transition: transform 0.3s var(--ease);
}

.text-link:hover::after {
	transform: translateX(4px);
}

/* ---------- Eyebrows / section intros ---------- */

.eyebrow {
	margin: 0 0 0.85rem;
	font-size: var(--text-xs);
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--celadon);
}

.eyebrow--on-dark {
	color: var(--celadon-soft);
}

.section-title {
	font-size: clamp(2.1rem, 4vw, 3.15rem);
	max-width: 16ch;
	margin-bottom: 1rem;
}

.section-lead {
	font-size: var(--text-lead);
	line-height: 1.75;
	color: var(--ink-soft);
	max-width: 42rem;
}

.section-intro {
	margin-bottom: var(--space-lg);
}

.section-intro--split {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 2rem;
	align-items: end;
	margin-bottom: var(--space-xl);
}

.section-intro--split .section-title {
	max-width: none;
	margin-bottom: 0;
}

.section-intro__aside {
	display: grid;
	gap: 1rem;
}

.section {
	padding: var(--space-2xl) 0;
}

/* ---------- Hero ---------- */

.hero {
	position: relative;
	min-height: min(78vh, 760px);
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: calc(var(--header-h) + 0.5rem) 0 0;
	overflow: hidden;
	color: var(--ink);
	background: #ebe8e0;
}

.hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	animation: heroImageIn 1.2s var(--ease) both;
}

.hero__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 52% 42%;
	display: block;
}

@media (min-width: 960px) {
	.hero {
		min-height: min(78vh, 820px);
	}

	.hero__photo {
		object-fit: cover;
		object-position: center 40%;
	}
}

.hero__wash {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.hero--has-image .hero__wash {
	background:
		linear-gradient(
			90deg,
			rgba(246, 244, 239, 0.55) 0%,
			rgba(246, 244, 239, 0.28) 26%,
			rgba(246, 244, 239, 0.05) 46%,
			transparent 58%
		),
		linear-gradient(
			180deg,
			rgba(246, 244, 239, 0.2) 0%,
			transparent 18%,
			transparent 78%,
			rgba(246, 244, 239, 0.12) 100%
		);
}

.hero__stage {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: center;
	width: min(100% - 2.5rem, var(--container));
	margin-inline: auto;
	padding: 1.5rem 0 2rem;
}

.hero__content {
	max-width: 28rem;
	margin: 0;
	margin-right: auto;
	padding: 0;
	text-align: left;
}

.hero__brand {
	font-family: var(--font-display);
	font-size: clamp(3.35rem, 7.2vw, 5.15rem);
	font-weight: 500;
	line-height: 1;
	color: var(--ink);
	margin: 0;
	letter-spacing: -0.025em;
}

.hero__divider {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	width: min(100%, 19rem);
	margin: 1.2rem 0 1.1rem;
}

.hero__divider-line {
	flex: 1;
	height: 1px;
	background: rgba(44, 52, 47, 0.28);
}

.hero__divider-ornament {
	width: 1.85rem;
	height: 1.85rem;
	color: rgba(44, 52, 47, 0.7);
	display: grid;
	place-items: center;
	flex-shrink: 0;
}

.hero__divider-ornament svg {
	width: 100%;
	height: 100%;
	display: block;
}

.hero__title {
	font-family: var(--font-display);
	font-size: clamp(1.65rem, 2.9vw, 2.15rem);
	font-weight: 400;
	line-height: 1.35;
	max-width: 18ch;
	margin: 0 0 1rem;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.hero__text {
	font-size: var(--text-lead);
	line-height: 1.7;
	color: var(--ink);
	max-width: 32rem;
	margin: 0 0 1.5rem;
}

.hero__stamp {
	position: absolute;
	right: clamp(0.85rem, 2.8vw, 2rem);
	bottom: 7.5rem;
	top: auto;
	transform: none;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	pointer-events: none;
}

.hero__stamp-kanji {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.1rem;
	font-family: var(--font-display);
	font-size: 1.15rem;
	line-height: 1.2;
	color: rgba(44, 52, 47, 0.48);
}

.hero__stamp-words {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hero__stamp-words li {
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(44, 52, 47, 0.45);
	text-align: center;
}

.hero__highlights {
	position: relative;
	z-index: 2;
	margin-top: auto;
	border-top: 0;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	padding: 0.35rem 0 1.35rem;
}

.hero__highlights-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.hero-highlight {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.95rem;
	align-items: center;
	padding: 0.45rem 0.25rem;
	border-right: 0;
	background: transparent;
}

.hero-highlight:last-child {
	border-right: 0;
}

.hero-highlight__icon {
	width: 3.9rem;
	height: 3.9rem;
	color: #0d1210;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	background: transparent;
}

.hero-highlight__icon svg,
.hero-highlight__img {
	width: 3.75rem;
	height: 3.75rem;
	display: block;
	object-fit: contain;
	filter: brightness(0.36) saturate(1.1);
}

.hero-highlight__label {
	margin: 0;
	font-size: var(--text-sm);
	line-height: 1.35;
	font-weight: 500;
	color: var(--ink);
	max-width: 17ch;
	text-shadow: 0 1px 12px rgba(246, 244, 239, 0.65);
}

.hero__scroll {
	display: none;
}

/* ---------- Atmosphere strip ---------- */

.section--atmosphere {
	padding: 0;
	background: #e9e8e3;
	border-bottom: 0;
}

.section--atmosphere .atmosphere-grid {
	width: min(100%, var(--container));
	max-width: var(--container);
}

.atmosphere-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 0.9fr;
	gap: 0;
	align-items: stretch;
	position: relative;
	--atmo-col-a: 1.15;
	--atmo-col-b: 1;
	--atmo-col-c: 0.9;
	--atmo-cols: calc(var(--atmo-col-a) + var(--atmo-col-b) + var(--atmo-col-c));
}

.atmosphere-grid::before,
.atmosphere-grid::after {
	content: "";
	position: absolute;
	top: clamp(1.35rem, 2.6vw, 2rem);
	width: 1px;
	height: 9.5rem;
	background: rgba(44, 52, 47, 0.28);
	pointer-events: none;
	z-index: 1;
}

.atmosphere-grid::before {
	left: calc(100% * var(--atmo-col-a) / var(--atmo-cols));
}

.atmosphere-grid::after {
	left: calc(100% * (var(--atmo-col-a) + var(--atmo-col-b)) / var(--atmo-cols));
}

.atmosphere-card {
	padding: clamp(1.35rem, 2.6vw, 2rem) clamp(0.85rem, 1.8vw, 1.35rem);
	border-right: 0;
	position: relative;
	height: 100%;
	align-self: stretch;
}

.atmosphere-card:last-child {
	border-right: 0;
}

.atmosphere-card--place {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.9rem;
	align-items: start;
}

.atmosphere-card__media {
	margin: 0;
	width: 6.25rem;
	height: 6.25rem;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--mist);
}

.atmosphere-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.atmosphere-card__title {
	font-size: clamp(1.15rem, 1.9vw, 1.45rem);
	margin-bottom: 0.55rem;
	max-width: 14ch;
	line-height: 1.2;
}

.atmosphere-card__text {
	margin: 0;
	font-size: var(--text-sm);
	line-height: 1.6;
	color: var(--ink-soft);
}

.atmosphere-card--quote {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.5rem;
	position: relative;
	margin: 0;
}

.atmosphere-card__mark {
	font-family: var(--font-display);
	font-size: 4rem;
	line-height: 0.7;
	color: rgba(63, 107, 85, 0.35);
	flex-shrink: 0;
	margin-top: 0.75rem;
}

.atmosphere-card__quote {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.05rem, 1.7vw, 1.28rem);
	font-style: italic;
	line-height: 1.45;
	color: var(--ink);
	max-width: 18ch;
	padding-top: 0.4rem;
}

.atmosphere-card--brand {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
}

.atmosphere-card__leaf {
	width: 4rem;
	height: 4rem;
	margin: 0;
	display: block;
	flex-shrink: 0;
}

.atmosphere-card__leaf-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.atmosphere-card__brand-body {
	display: flex;
	flex-direction: column;
	gap: 0.28rem;
	min-width: 0;
}

.atmosphere-card__brand {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.22rem;
	color: var(--ink);
}

.atmosphere-card__meta {
	margin: 0;
	font-size: var(--text-sm);
	color: var(--ink-soft);
	line-height: 1.45;
}

.atmosphere-card__meta a {
	color: inherit;
	text-decoration: none;
}

.atmosphere-card__meta a:hover {
	color: var(--ink);
}

@keyframes scrollPulse {
	0% {
		transform: translateY(0);
		opacity: 1;
	}
	70% {
		transform: translateY(8px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 0;
	}
}

@keyframes heroImageIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* ---------- Kobido ---------- */

.section--kobido {
	background: var(--white);
}

.kobido-layout {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.benefit-list {
	display: grid;
	gap: 1.35rem;
	margin-top: 2.25rem;
}

.benefit {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--line);
}

.benefit__index {
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--blush);
	line-height: 1;
	padding-top: 0.15rem;
}

.benefit__title {
	font-size: 1.35rem;
	margin-bottom: 0.35rem;
}

.benefit__text {
	color: var(--ink-soft);
	font-size: var(--text-md);
}

/* ---------- Media frames ---------- */

.media-frame {
	position: relative;
	overflow: hidden;
	background: var(--mist);
}

.media-frame--portrait,
.media-frame--about {
	aspect-ratio: 4 / 5;
}

.media-frame__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-placeholder {
	width: 100%;
	height: 100%;
	display: grid;
	place-items: center;
	padding: 2rem;
	text-align: center;
	color: var(--muted);
	font-size: 0.92rem;
	background:
		linear-gradient(145deg, var(--mist) 0%, var(--mist-deep) 100%);
}

.media-placeholder--kobido {
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), transparent 40%),
		linear-gradient(160deg, #d8e3dc 0%, #b7c8bc 100%);
}

.media-placeholder--about {
	background:
		radial-gradient(circle at 70% 20%, rgba(185, 149, 140, 0.25), transparent 45%),
		linear-gradient(180deg, #dfe6e2 0%, #c4d0c9 100%);
}

.kobido-layout__media .media-frame {
	box-shadow: var(--shadow-soft);
}

.about-layout__media .media-frame {
	clip-path: inset(0 round 0);
}

.about-layout__media .media-frame::after {
	content: "";
	position: absolute;
	inset: auto -8% -8% auto;
	width: 55%;
	height: 35%;
	background: var(--celadon-soft);
	z-index: -1;
}

/* ---------- About ---------- */

.section--about {
	background:
		linear-gradient(180deg, var(--paper) 0%, #ebeeea 100%);
}

.about-layout {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(2rem, 5vw, 4.5rem);
	align-items: center;
}

.about-text {
	font-size: var(--text-base);
	line-height: 1.8;
	color: var(--ink-soft);
	max-width: 38rem;
}

.about-sign {
	margin-top: 2rem;
	padding-top: 1.35rem;
	border-top: 1px solid var(--line);
}

.about-sign__name {
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-style: italic;
	color: var(--ink);
	margin-bottom: 0.2rem;
}

.about-sign__role {
	font-size: var(--text-sm);
	color: var(--muted);
}

/* ---------- First visit ---------- */

.section--visit {
	background: var(--white);
}

.visit-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	counter-reset: none;
}

.visit-step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	padding: 1.5rem 0 0;
	border-top: 1px solid var(--line);
}

.visit-step__num {
	width: 2.1rem;
	height: 2.1rem;
	display: grid;
	place-items: center;
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: var(--celadon-deep);
	border: 1px solid var(--celadon-soft);
	background: var(--paper);
}

.visit-step__title {
	font-size: 1.4rem;
	margin-bottom: 0.45rem;
}

.visit-step__text {
	color: var(--ink-soft);
	font-size: var(--text-md);
}

/* ---------- Blog ---------- */

.section--blog {
	background: var(--paper);
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--line);
	transition: border-color 0.3s var(--ease), transform 0.35s var(--ease);
}

.post-card:hover {
	border-color: var(--celadon-soft);
	transform: translateY(-4px);
}

.post-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.post-card__media {
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: var(--mist);
	margin: 0;
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s var(--ease);
}

.post-card:hover .post-card__media img {
	transform: scale(1.04);
}

.post-card__media--placeholder {
	background:
		linear-gradient(135deg, var(--mist) 0%, var(--mist-deep) 100%);
}

.post-card__body {
	padding: 1.25rem 1.25rem 1.4rem;
}

.post-card__date {
	display: block;
	font-size: 0.8rem;
	color: var(--muted);
	letter-spacing: 0.04em;
	margin-bottom: 0.55rem;
}

.post-card__title {
	font-size: 1.4rem;
	margin-bottom: 0.55rem;
}

.post-card__excerpt {
	font-size: 0.95rem;
	color: var(--muted);
	margin-bottom: 0.9rem;
}

.post-card__more {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--celadon-deep);
}

.blog-empty {
	padding: 2.5rem;
	border: 1px dashed var(--line-strong);
	text-align: center;
	display: grid;
	gap: 1.25rem;
	justify-items: center;
	background: rgba(255, 255, 255, 0.55);
}

.blog-archive {
	padding-top: 0;
}

.pagination {
	margin-top: 3rem;
	display: flex;
	justify-content: center;
}

.pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	height: 2.4rem;
	padding: 0 0.65rem;
	border: 1px solid var(--line);
	text-decoration: none;
	color: var(--ink-soft);
	font-size: 0.9rem;
	background: var(--white);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
	border-color: var(--celadon);
	color: var(--celadon-deep);
}

.empty-state {
	text-align: center;
	color: var(--muted);
	padding: 2rem 0 4rem;
}

/* ---------- Booking CTA ---------- */

.section--booking {
	padding-top: var(--space-xl);
	padding-bottom: var(--space-2xl);
}

.booking-panel {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	padding: clamp(2rem, 5vw, 3.5rem);
	background:
		radial-gradient(ellipse 60% 80% at 100% 0%, rgba(201, 217, 208, 0.18), transparent 50%),
		linear-gradient(145deg, #1a2922 0%, #24362c 55%, #1e2d26 100%);
	color: rgba(255, 255, 255, 0.82);
}

.booking-panel__title {
	font-size: clamp(2rem, 4vw, 3rem);
	color: var(--white);
	max-width: 14ch;
	margin-bottom: 1rem;
}

.booking-panel__text {
	max-width: 34rem;
	margin-bottom: 1.75rem;
	color: rgba(255, 255, 255, 0.72);
	font-size: 1.05rem;
}

.booking-panel__channels {
	display: grid;
	gap: 0.85rem;
	align-content: center;
}

.channel {
	display: grid;
	gap: 0.2rem;
	padding: 1.1rem 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.04);
	text-decoration: none;
	color: inherit;
	transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

a.channel:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.28);
	color: var(--white);
}

.channel__label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--celadon-soft);
}

.channel__value {
	font-family: var(--font-display);
	font-size: 1.45rem;
	color: var(--white);
	line-height: 1.25;
}

.channel__meta {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 0.25rem;
}

/* ---------- Page hero / single ---------- */

.page-hero {
	padding: clamp(3rem, 8vw, 5.5rem) 0 2.5rem;
	background:
		radial-gradient(ellipse 70% 80% at 80% 0%, rgba(201, 217, 208, 0.45), transparent 55%),
		var(--paper);
	border-bottom: 1px solid var(--line);
}

.page-hero__title {
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	max-width: 18ch;
}

.page-hero__lead {
	margin-top: 0.85rem;
	color: var(--muted);
	max-width: 36rem;
}

.post-meta {
	margin-top: 1rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.single-post__media {
	margin: 2rem auto 0;
}

.single-post__media img {
	width: 100%;
	max-height: 480px;
	object-fit: cover;
}

body:not(.home) .site-main {
	padding-bottom: 3rem;
}

.entry-content {
	padding: 2.5rem 0 2.5rem;
	font-size: 1.08rem;
}

.entry-content > * + * {
	margin-top: 1.15rem;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 2rem;
}

.entry-content a {
	text-decoration: underline;
}

.single-post__footer {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	padding: 1rem 0 4rem;
	border-top: 1px solid var(--line);
	margin-top: 1rem;
}

.error-404 {
	min-height: 55vh;
	display: grid;
	align-content: center;
}

/* ---------- Footer ---------- */

.site-footer {
	background: #121a16;
	color: rgba(255, 255, 255, 0.7);
	padding-top: 3.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 2rem;
	padding-bottom: 3rem;
}

.footer-brand__name {
	font-family: var(--font-display);
	font-size: 1.85rem;
	color: var(--white);
	margin-bottom: 0.75rem;
}

.footer-brand__tagline {
	max-width: 28rem;
	line-height: 1.7;
}

.footer-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--celadon-soft);
	margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
	display: grid;
	gap: 0.55rem;
}

.site-footer a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.site-footer a:hover {
	color: var(--white);
}

.footer-social {
	display: flex !important;
	gap: 1rem;
	margin-top: 1.15rem;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.15rem 0;
	font-size: 0.88rem;
	flex-wrap: wrap;
}

.footer-legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.35rem 0.55rem;
	flex: 1;
	text-align: center;
}

.footer-legal a {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
}

.footer-legal a:hover {
	color: var(--white);
}

.footer-legal__sep {
	color: rgba(255, 255, 255, 0.28);
	user-select: none;
}

.footer-top {
	font-weight: 600;
}

/* ---------- Reveal motion ---------- */

.reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
	transition-delay: calc(var(--i, 0) * 0.08s);
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.hero .reveal {
	opacity: 0;
	transform: translateY(18px);
	animation: heroReveal 0.9s var(--ease) forwards;
}

.hero .hero__brand.reveal {
	animation-delay: 0.05s;
}

.hero .hero__divider.reveal {
	animation-delay: 0.16s;
}

.hero .hero__title.reveal {
	animation-delay: 0.28s;
}

.hero .hero__text.reveal {
	animation-delay: 0.4s;
}

.hero .btn-row.reveal {
	animation-delay: 0.52s;
}

@keyframes heroReveal {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.reveal,
	.hero .reveal,
	.hero__media,
	.hero__photo,
	.hero__scroll span,
	.post-card,
	.post-card__media img,
	.btn {
		animation: none !important;
		transition: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
	.section-intro--split,
	.kobido-layout,
	.about-layout,
	.booking-panel,
	.footer-grid,
	.posts-grid,
	.atmosphere-grid {
		grid-template-columns: 1fr;
	}

	.atmosphere-grid::before,
	.atmosphere-grid::after {
		display: none;
	}

	.atmosphere-card {
		border-right: 0;
		border-bottom: 0;
	}

	.atmosphere-card:not(:last-child)::after {
		content: "";
		position: absolute;
		right: auto;
		left: 50%;
		top: auto;
		bottom: 0;
		transform: translateX(-50%);
		width: 10rem;
		height: 1px;
		background: rgba(44, 52, 47, 0.28);
		pointer-events: none;
	}

	.atmosphere-card:last-child {
		border-bottom: 0;
	}

	.hero__highlights-inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem 1.25rem;
	}

	.visit-steps {
		grid-template-columns: 1fr;
	}

	.about-layout__media {
		order: -1;
		max-width: 420px;
	}

	.posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero__brand {
		font-size: clamp(2.85rem, 10vw, 3.9rem);
	}

	.hero__stamp {
		bottom: 8.5rem;
		right: 0.75rem;
		opacity: 0.85;
	}

	.hero__stage {
		align-items: flex-start;
		padding-top: 2rem;
	}

	.hero__content {
		max-width: 24rem;
	}
}

@media (max-width: 768px) {
	:root {
		--header-h: 4rem;
	}

	.nav-toggle {
		display: block;
		z-index: 120;
	}

	.site-nav {
		position: fixed;
		inset: 0 0 auto 0;
		top: 0;
		padding: calc(var(--header-h) + 1rem) 1.5rem 1.5rem;
		background: rgba(245, 247, 246, 0.98);
		backdrop-filter: blur(16px);
		flex-direction: column;
		align-items: stretch;
		gap: 1.25rem;
		transform: translateY(-110%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.4s var(--ease), opacity 0.35s var(--ease);
		border-bottom: 1px solid var(--line);
	}

	.site-nav.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.site-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.site-nav__list a {
		font-size: 1.2rem;
		font-family: var(--font-display);
	}

	.btn--nav {
		width: 100%;
	}

	.hero {
		min-height: 88vh;
		padding-bottom: 0;
	}

	.hero__stamp {
		display: none;
	}

	.hero__stage {
		padding: 1.25rem 0 1.5rem;
	}

	.hero__content {
		max-width: 100%;
	}

	.hero-highlight {
		padding: 1rem 0.85rem;
	}

	.hero-highlight__label {
		font-size: 0.9rem;
		max-width: none;
	}

	.posts-grid {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 4.25rem 0;
	}

	.section--atmosphere {
		padding: 0;
	}

	.footer-bottom__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-legal {
		justify-content: flex-start;
		text-align: left;
	}
}

@media (max-width: 480px) {
	.container,
	.container.narrow,
	.narrow {
		width: min(100% - 1.5rem, var(--container));
	}

	.btn-row {
		flex-direction: column;
		align-items: stretch;
	}

	.booking-panel {
		padding: 1.75rem 1.25rem;
	}
}
