:root {
	--bg: #111111;
	--font: "Helvetica Neue", Helvetica, Arial, sans-serif;
	--bottom-blur-max: 56px;
	--glow-core: rgba(255, 255, 255, 0.72);
	--glow-halo: rgba(255, 255, 255, 0.34);
	--text: #0d0d0d;
	--muted: rgba(0, 0, 0, 0.72);
	--link: #0d0d0d;
	--border-soft: rgba(0, 0, 0, 0.22);
	--status-open: #15803d;
	--page-max-width: calc(768px - 2rem);
	--page-outer-gutter: 1rem;
	--page-content-inset-top: clamp(0.5rem, 2vw, 1rem);
	--page-content-pad-top: clamp(0.75rem, 2vw, 1.25rem);
	--page-content-pad-inline: clamp(1rem, 4vw, 2.5rem);
	--page-content-pad-bottom: clamp(1.25rem, 3vw, 2rem);
	--page-content-margin-bottom: clamp(2rem, 6vw, 4rem);
	--menu-viewer-max-width: 520px;
	--menu-viewer-page-ratio: 210 / 297;
	--site-header-clearance: clamp(4.75rem, 14vw, 6.5rem);
	--menu-viewer-gap: 0.35rem;
	--touch-target-min: 48px;
	--phone-max-width: 440px; /* iPhone 16 Pro Max viewport and smaller */
}

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

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	min-height: 100vh;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	font-family: var(--font);
	background-color: var(--bg);
	background-image: url("../assets/hero-bg.png");
	background-image: image-set(
		url("../assets/hero-bg.avif") type("image/avif"),
		url("../assets/hero-bg.webp") type("image/webp"),
		url("../assets/hero-bg.png") type("image/png")
	);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: var(--text);
	line-height: 1.45;
	font-size: 16px;
	overflow-x: clip;
}

a {
	color: var(--link);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

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

.site-header {
	position: relative;
	display: flex;
	justify-content: center;
	padding: clamp(1.25rem, 4vw, 2.25rem) var(--page-outer-gutter) 0;
	background: transparent;
}

.header-inner {
	position: relative;
	isolation: isolate;
	box-sizing: border-box;
	width: min(var(--page-max-width), calc(100% - 2 * var(--page-outer-gutter)));
	max-width: 100%;
	margin-inline: auto;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: clamp(1rem, 2.5vw, 2.25rem);
	text-align: left;
	padding: 0.6rem clamp(1rem, 2.5vw, 1.75rem);
	background: transparent;
	z-index: 100;
}

.header-inner::before,
.header-inner::after,
.home-content::before,
.home-content::after,
body:not([data-page="home"]) main::before,
body:not([data-page="home"]) main::after {
	content: "";
	position: absolute;
	z-index: -1;
	pointer-events: none;
}

.header-inner::before {
	inset: -1rem -2rem;
	background: var(--glow-core);
	filter: blur(24px);
}

.header-inner::after {
	inset: -2.75rem -4.5rem;
	background: var(--glow-halo);
	filter: blur(56px);
}

.nav-main a,
.lang button,
.lang a {
	text-shadow:
		0 0 14px rgba(255, 255, 255, 0.96),
		0 0 28px rgba(255, 255, 255, 0.78);
}

.logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100px;
	height: 40px;
	flex-shrink: 0;
	line-height: 1;
	color: var(--text);
	text-decoration: none;
}

.logo-img {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100px;
	height: 100px;
	transform: translate(-50%, -50%);
	object-fit: contain;
	filter: invert(1);
}

.nav-main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 1.35rem;
	z-index: 1000;
}

.nav-main a {
	color: var(--text);
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.nav-main a[aria-current="page"] {
	color: var(--text);
	font-weight: 700;
}

.lang {
	display: inline-flex;
	gap: 0.35rem;
	align-items: center;
}

.lang button,
.lang a {
	font: inherit;
	font-size: 0.72rem;
	padding: 0.3rem 0.45rem;
	border: none;
	background: transparent;
	color: var(--text);
	cursor: pointer;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lang a {
	text-decoration: none;
}

.lang button:hover,
.lang a:hover {
	opacity: 0.72;
}

.lang button[aria-pressed="true"],
.lang a[aria-pressed="true"],
.lang a[aria-current="true"] {
	background: rgba(0, 0, 0, 0.1);
	color: var(--text);
	font-weight: 700;
}

main {
	flex: 1;
	box-sizing: border-box;
	width: min(var(--page-max-width), calc(100% - 2 * var(--page-outer-gutter)));
	max-width: 100%;
	margin-inline: auto;
	min-width: 0;
}

.home-content,
body:not([data-page="home"]) main {
	margin-top: var(--page-content-inset-top);
	padding: var(--page-content-pad-top) var(--page-content-pad-inline) var(--page-content-pad-bottom)
		var(--page-content-pad-inline);
}

body:not([data-page="home"]) main {
	position: relative;
	isolation: isolate;
	margin-bottom: var(--page-content-margin-bottom);
	background: transparent;
}

body:not([data-page="home"]) main::before {
	inset: -1.25rem -1.75rem;
	background: var(--glow-core);
	filter: blur(22px);
}

body:not([data-page="home"]) main::after {
	inset: -2.5rem -3rem;
	background: var(--glow-halo);
	filter: blur(48px);
}

body[data-page="home"] main {
	flex: 0;
	width: auto;
	max-width: none;
	margin: 0;
	padding: 0;
	min-height: 0;
}

.home-layout {
	position: relative;
	box-sizing: border-box;
	width: min(var(--page-max-width), calc(100% - 2 * var(--page-outer-gutter)));
	max-width: 100%;
	margin-inline: auto;
	min-width: 0;
	min-height: calc(100vh - 12rem);
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 0;
}

.site-visual {
	position: fixed;
	right: 0;
	bottom: 0;
	margin: 0;
	width: clamp(195px, 29vw, 390px);
	max-width: 100%;
	z-index: -1;
	pointer-events: none;
}

.site-visual picture {
	display: block;
	width: 100%;
}

.site-visual-img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: bottom left;
}

.home-content {
	position: relative;
	isolation: isolate;
	z-index: 1;
	width: 100%;
	text-align: left;
	background: transparent;
}

.home-content::before {
	inset: -1.5rem -2.25rem;
	background: var(--glow-core);
	filter: blur(32px);
}

.home-content::after {
	inset: -4rem -5rem;
	background: var(--glow-halo);
	filter: blur(72px);
}

.home-content :is(h1, p, a, li, summary) {
	text-shadow:
		0 0 16px rgba(255, 255, 255, 0.98),
		0 0 32px rgba(255, 255, 255, 0.82);
}

.home-tagline {
	font-size: clamp(1.35rem, 2.8vw, 1.75rem);
	font-weight: 700;
	margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.35;
}

.home-information {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(1.15rem, 2.5vw, 1.65rem);
	max-width: min(22rem, 100%);
	text-align: left;
}

.info-block {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	width: 100%;
}

.info-block-text {
	min-width: 0;
}

.location-line {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--text);
}

.maps-link {
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--text);
}

.hours-heading {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text);
}

.hours-line {
	margin: 0 0 0.5rem;
	font-size: 0.98rem;
	line-height: 1.45;
	color: var(--text);
}

.status-word {
	margin: 0;
	font-size: 0.98rem;
	font-weight: 600;
}

.status-word.is-closed {
	color: var(--muted);
}

.status-word.is-open {
	color: var(--status-open);
}

.info-icon {
	flex-shrink: 0;
	margin-top: 2px;
	color: var(--text);
	opacity: 0.95;
}

.site-bottom-blur {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	height: min(62vh, 560px);
	z-index: 0;
	pointer-events: none;
	opacity: var(--blur-strength, 0);
	backdrop-filter: blur(calc(var(--blur-strength, 0) * var(--bottom-blur-max)));
	-webkit-backdrop-filter: blur(calc(var(--blur-strength, 0) * var(--bottom-blur-max)));
	-webkit-mask-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.95) 0%,
		rgba(0, 0, 0, 0.55) 42%,
		rgba(0, 0, 0, 0.15) 72%,
		transparent 100%
	);
	mask-image: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.95) 0%,
		rgba(0, 0, 0, 0.55) 42%,
		rgba(0, 0, 0, 0.15) 72%,
		transparent 100%
	);
	transition: opacity 0.4s ease;
	will-change: opacity, backdrop-filter;
}

@media (prefers-reduced-motion: reduce) {
	.site-bottom-blur {
		display: none;
	}
}

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

.page-intro h1 {
	font-size: clamp(1.35rem, 2.8vw, 1.75rem);
	margin: 0 0 0.75rem;
	font-weight: 700;
}

.page-intro .lead {
	font-size: 1.05rem;
	color: var(--muted);
	margin: 0 auto;
	max-width: 52ch;
	line-height: 1.7;
}

.page-intro--about {
	text-align: left;
}

.page-intro--contact {
	text-align: left;
}

.contact-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.1rem;
}

.contact-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	margin: 0;
}

.about-hero {
	margin: 0;
}

.page-tagline {
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 700;
	margin: 0 0 clamp(0.85rem, 2.5vw, 1.35rem);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.25;
	color: var(--text);
}

.contact-tagline,
.menu-tagline {
	text-align: left;
}

body[data-page="contact"] .contact-tagline,
body[data-page="menu"] .menu-tagline {
	margin-bottom: clamp(1.15rem, 3vw, 1.65rem);
}

.about-tagline {
	font-size: clamp(1.5rem, 3.4vw, 2.05rem);
	font-weight: 700;
	margin: 0 0 0.7rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.25;
	color: var(--text);
}

.about-lead {
	font-size: clamp(1rem, 2.1vw, 1.125rem);
	font-weight: 400;
	margin: 0;
	line-height: 1.5;
	color: var(--text);
}

.about-divider {
	border: none;
	margin: clamp(1.35rem, 3.5vw, 1.85rem) 0;
}

.about-copy {
	font-size: clamp(0.98rem, 2vw, 1.05rem);
	color: var(--text);
	line-height: 1.6;
}

.about-copy > p {
	margin: 0 0 1.15rem;
}

.about-closing {
	margin-top: clamp(1.5rem, 4vw, 2.25rem);
}

.about-closing p {
	margin: 0 0 0.4rem;
}

.about-sig {
	margin: 0;
	font-weight: 700;
}

.contact-row .contact-icon {
	margin-top: 0;
}

.contact-link {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	word-break: break-word;
}

.site-footer {
	box-sizing: border-box;
	width: min(var(--page-max-width), calc(100% - 2 * var(--page-outer-gutter)));
	margin-inline: auto;
	padding: 1.5rem var(--page-outer-gutter) 2rem;
	text-align: center;
	color: var(--muted);
	font-size: 0.85rem;
}

body[data-page="home"] .site-footer {
	color: var(--text);
}

.site-footer p {
	margin: 0;
}

.load-error {
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	padding: 1rem 1.25rem;
	margin: 1rem auto;
	border-radius: 4px;
	width: min(var(--page-max-width), calc(100% - 2 * var(--page-outer-gutter)));
	border: 1px solid var(--border-soft);
}

body.menu-viewer-open {
	overflow: hidden;
}

html.menu-viewer-open {
	overflow: hidden;
}

@media (min-width: 721px) and (pointer: fine) {
	body.menu-viewer-open {
		position: fixed;
		left: 0;
		right: 0;
		width: 100%;
	}
}

body.menu-viewer-open .site-header {
	position: sticky;
	top: 0;
	z-index: 2100;
	pointer-events: auto;
	overflow: visible;
}

body.menu-viewer-open .site-header a,
body.menu-viewer-open .site-header button {
	pointer-events: auto;
}

body.menu-viewer-open .header-inner,
body.menu-viewer-open .logo {
	position: relative;
	z-index: 1;
}

.menu-viewer-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	margin: 0 0 1.25rem;
}

.menu-pdf-cta {
	font: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	padding: 0.55rem 1rem;
	border: 1px solid var(--border-soft);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--text);
	cursor: pointer;
}

.menu-pdf-cta:hover {
	background: rgba(255, 255, 255, 0.14);
}

.menu-pdf-link {
	font-size: 0.8125rem;
	color: var(--muted);
}

.menu-seo {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.menu-seo__title {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
}

.menu-seo__note {
	margin: 0;
}

.menu-seo__footnote {
	margin: 0;
}

.menu-seo__section h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
}

.menu-seo__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu-seo__list li {
	display: block;
	padding: 0;
	border: 0;
}

.menu-seo__item-name,
.menu-seo__item-price {
	display: inline;
}

.menu-seo__item-desc {
	display: block;
	margin-top: 0.15rem;
	font-size: 0.875rem;
	color: var(--text-muted, #666);
}

.menu-viewer {
	position: fixed;
	top: var(--menu-viewer-top, var(--site-header-clearance));
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2000;
	display: grid;
	align-items: start;
	justify-items: center;
	padding: 0 clamp(0.75rem, 3vw, 1.5rem) clamp(0.75rem, 3vw, 1.5rem);
	pointer-events: none;
}

.menu-viewer.is-open {
	pointer-events: none;
}

.menu-viewer.is-open .menu-viewer__backdrop,
.menu-viewer.is-open .menu-viewer__sheet {
	pointer-events: auto;
}

.menu-viewer__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.42);
	opacity: 0;
	transition: opacity 0.32s ease;
}

.menu-viewer.is-open .menu-viewer__backdrop {
	opacity: 1;
}

.menu-viewer__sheet {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(
		var(--menu-viewer-max-width),
		calc(100% - 2rem),
		calc((100dvh - var(--menu-viewer-top, var(--site-header-clearance)) - 1.5rem) * var(--menu-viewer-page-ratio))
	);
	max-height: calc(100dvh - var(--menu-viewer-top, var(--site-header-clearance)) - 1.5rem);
	margin: 0;
	background: #f4f1ea;
	border-radius: 12px;
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.28),
		0 0 0 1px rgba(0, 0, 0, 0.06);
	opacity: 0;
	transform: scale(0.96) translateY(0.75rem);
	transition:
		opacity 0.28s ease,
		transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
	overflow: hidden;
}

.menu-viewer.is-open .menu-viewer__sheet {
	opacity: 1;
	transform: scale(1) translateY(0);
}

.menu-viewer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	flex-shrink: 0;
	padding: 0.75rem 0.85rem 0.65rem 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background: rgba(255, 255, 255, 0.72);
}

.menu-viewer__title {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #111;
}

.menu-viewer__close {
	font: inherit;
	line-height: 1;
	border: none;
	background: transparent;
	color: #111;
	cursor: pointer;
	font-size: 1.75rem;
	padding: 0.15rem 0.45rem;
	border-radius: 999px;
}

.menu-viewer__close:hover {
	background: rgba(0, 0, 0, 0.06);
}

.menu-viewer__body {
	position: relative;
	flex: 1 1 auto;
	min-height: 0;
	aspect-ratio: var(--menu-viewer-page-ratio);
	display: flex;
	flex-direction: column;
	background: #fff;
	overflow: hidden;
}

.menu-viewer__frame {
	display: block;
	width: 100%;
	height: 100%;
	flex: 1 1 auto;
	min-height: 0;
	border: 0;
	border-radius: 0;
	background: #fff;
	touch-action: pan-x pan-y pinch-zoom;
}

.menu-viewer__fallback {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.menu-viewer__fallback-link {
	color: #111;
	font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
	.menu-viewer__backdrop,
	.menu-viewer__sheet {
		transition: none;
	}

	.menu-viewer__sheet {
		opacity: 1;
		transform: none;
	}

	.menu-viewer:not(.is-open) .menu-viewer__sheet {
		display: none;
	}

	@media (max-width: 720px) {
		.menu-viewer__sheet {
			transform: translateY(100%);
		}

		.menu-viewer.is-open .menu-viewer__sheet {
			transform: translateY(0);
		}
	}

	@media (max-width: 440px) {
		.menu-viewer__sheet {
			transform: translateY(100%);
		}

		.menu-viewer.is-open .menu-viewer__sheet {
			transform: translateY(0);
		}
	}
}

@media (max-width: 720px) {
	:root {
		--site-header-clearance: clamp(7rem, 24vw, 10.5rem);
	}

	body {
		background-attachment: scroll;
	}

	.header-inner::before {
		inset: -0.75rem -1rem;
		filter: blur(18px);
	}

	.header-inner::after {
		inset: -1.25rem -1.5rem;
		filter: blur(32px);
	}

	.home-content::before {
		inset: -1rem -1.25rem;
		filter: blur(24px);
	}

	.home-content::after {
		inset: -1.5rem -2rem;
		filter: blur(40px);
	}

	body:not([data-page="home"]) main::before {
		inset: -0.75rem -1rem;
		filter: blur(18px);
	}

	body:not([data-page="home"]) main::after {
		inset: -1.25rem -1.5rem;
		filter: blur(32px);
	}

	body[data-page="home"] .site-visual {
		width: clamp(180px, 42vw, 280px);
	}

	body[data-page="home"] .site-visual-img {
		object-position: bottom right;
	}

	.menu-viewer {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-end;
		padding: 0;
	}

	.menu-viewer__sheet {
		flex: 1 1 auto;
		width: 100%;
		max-width: none;
		max-height: calc(100dvh - var(--menu-viewer-top, var(--site-header-clearance)));
		min-height: 0;
		margin: 0;
		border-radius: 12px 12px 0 0;
		transform: translateY(100%);
	}

	.menu-viewer.is-open .menu-viewer__sheet {
		transform: translateY(0);
	}

	.menu-viewer__body {
		aspect-ratio: auto;
		flex: 1 1 auto;
		min-height: 0;
	}
}

@media (max-width: 440px) {
	.menu-viewer__sheet {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
		flex: none;
		width: auto;
		height: auto;
		max-height: none;
		margin: 0;
		border-radius: 0;
		box-shadow: none;
	}
}

@media (max-width: 720px), (pointer: coarse) {
	.nav-main a,
	.lang button,
	.lang a {
		position: relative;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		-webkit-tap-highlight-color: transparent;
	}

	.nav-main a::before,
	.lang button::before,
	.lang a::before {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		width: max(100%, var(--touch-target-min));
		height: max(100%, var(--touch-target-min));
		transform: translate(-50%, -50%);
	}
}

@media (max-width: 520px) {
	.header-inner {
		gap: 0.75rem 1rem;
	}

	.nav-main {
		flex: 1 1 100%;
		justify-content: center;
	}

	.site-visual {
		width: clamp(180px, 48vw, 280px);
		z-index: 2;
	}
}

@media (max-width: 375px) {
	.site-visual {
		z-index: -1;
	}
}

.pwa-install {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 1900;
	padding: var(--page-outer-gutter);
	padding-bottom: calc(var(--page-outer-gutter) + env(safe-area-inset-bottom, 0));
	pointer-events: none;
	opacity: 0;
	transform: translateY(0.75rem);
	transition:
		opacity 0.28s ease,
		transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.pwa-install.is-visible {
	pointer-events: auto;
	opacity: 1;
	transform: translateY(0);
}

body.menu-viewer-open .pwa-install {
	display: none;
}

.pwa-install__card {
	position: relative;
	box-sizing: border-box;
	width: min(var(--page-max-width), calc(100% - 2 * var(--page-outer-gutter)));
	margin-inline: auto;
	padding: 0.55rem 2.35rem 0.85rem 1rem;
	background: #fff;
	border: 1px solid var(--text);
	color: var(--text);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.pwa-install__handle {
	width: 2.5rem;
	height: 3px;
	margin: 0.15rem auto 0.65rem;
	background: rgba(0, 0, 0, 0.22);
	border-radius: 999px;
	touch-action: none;
}

@media (pointer: fine) {
	.pwa-install__handle {
		display: none;
	}
}

.pwa-install__title {
	margin: 0 0 0.35rem;
	font-size: 0.82rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.pwa-install__body,
.pwa-install__ios-hint {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: var(--text);
}

.pwa-install__ios-hint {
	margin-top: 0.35rem;
	font-weight: 600;
}

.pwa-install__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.pwa-install__install,
.pwa-install__dismiss {
	font: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.5rem 0.85rem;
	border: 1px solid var(--text);
	border-radius: 6px;
	background: #fff;
	color: var(--text);
	cursor: pointer;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.pwa-install__install:hover,
.pwa-install__dismiss:hover {
	background: rgba(0, 0, 0, 0.06);
}

.pwa-install__close {
	position: absolute;
	top: 0.4rem;
	right: 0.4rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	font: inherit;
	line-height: 1;
	border: 1px solid var(--text);
	background: #fff;
	color: var(--text);
	cursor: pointer;
	font-size: 0.95rem;
	padding: 0;
	border-radius: 999px;
	isolation: isolate;
}

.pwa-install__close:hover {
	background: rgba(0, 0, 0, 0.06);
}

@media (max-width: 720px), (pointer: coarse) {
	.pwa-install__close::before {
		content: "";
		position: absolute;
		left: 50%;
		top: 50%;
		width: max(100%, var(--touch-target-min));
		height: max(100%, var(--touch-target-min));
		transform: translate(-50%, -50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.pwa-install {
		transition: none;
		transform: none;
	}
}
