/*
Theme Name: La Olita Bar
Theme URI: https://laolita.bar/
Author: La Olita Bar
Description: Custom one-page MVP for La Olita Bar — beach, brunch, sunset and sound.
Version: 0.2.1
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: laolita-bar
*/

:root {
	--aqua: #44a7ca;
	--aqua-bright: #6dd6ea;
	--aqua-soft: #bcecf4;
	--ink: #061b24;
	--ink-soft: #12303a;
	--paper: #f3f0e9;
	--white: #fffef8;
	--sand: #d7c7aa;
	--coral: #f06445;
	--sun: #ffd565;
	--line: rgba(6, 27, 36, 0.18);
	--shell: min(100% - 48px, 1380px);
	--sans: "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 86px;
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

button {
	color: inherit;
}

::selection {
	background: var(--aqua);
	color: var(--white);
}

.shell {
	width: var(--shell);
	margin-inline: auto;
}

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

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 999;
	padding: 10px 14px;
	background: var(--white);
	color: var(--ink);
	transform: translateY(-150%);
	transition: transform 180ms ease;
}

.skip-link:focus {
	transform: translateY(0);
}

:focus-visible {
	outline: 3px solid var(--sun);
	outline-offset: 4px;
}

.section {
	padding-block: clamp(90px, 10vw, 170px);
}

.eyebrow {
	margin: 0;
	font-size: 0.73rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 28px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	transition:
		color 300ms var(--ease),
		background-color 300ms var(--ease),
		transform 300ms var(--ease);
}

.pill:hover {
	transform: translateY(-3px);
}

.pill--aqua {
	border-color: var(--aqua-bright);
	background: var(--aqua-bright);
	color: var(--ink);
}

.pill--aqua:hover {
	background: var(--white);
	border-color: var(--white);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 7px;
	border-bottom: 1px solid currentColor;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	transition: gap 300ms var(--ease);
}

.text-link:hover {
	gap: 24px;
}

.text-link--light {
	color: var(--white);
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	width: 100%;
	height: 86px;
	padding: 0 clamp(24px, 4vw, 64px);
	color: var(--white);
	transition:
		height 300ms ease,
		background-color 300ms ease,
		color 300ms ease,
		backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
	height: 70px;
	background: color-mix(in srgb, var(--ink) 90%, transparent);
	backdrop-filter: blur(16px);
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	justify-self: start;
	font-size: 1.03rem;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.brand em {
	color: var(--aqua-bright);
	font-size: 0.72em;
	font-style: normal;
	letter-spacing: 0;
}

.brand__wave {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid currentColor;
	border-radius: 50%;
	color: var(--aqua-bright);
	font-family: var(--serif);
	font-size: 1.7rem;
	font-weight: 400;
	line-height: 1;
}

.site-nav {
	display: flex;
	gap: clamp(22px, 3vw, 46px);
}

.site-nav a {
	position: relative;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-nav a::after {
	position: absolute;
	right: 0;
	bottom: -7px;
	left: 0;
	height: 1px;
	background: currentColor;
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 300ms var(--ease);
}

.site-nav a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.pill--header {
	justify-self: end;
	min-height: 42px;
	padding-inline: 24px;
}

.pill--header:hover {
	background: var(--white);
	color: var(--ink);
}

.menu-toggle {
	display: none;
}

.hero {
	position: relative;
	display: grid;
	align-items: end;
	min-height: 100svh;
	padding: 150px clamp(24px, 7vw, 120px) clamp(70px, 9vh, 100px);
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
	isolation: isolate;
}

.hero__media,
.hero__veil,
.hero__grain {
	position: absolute;
	inset: 0;
}

.hero__media {
	z-index: -3;
	background-image: url("assets/images/laolita-hero.jpg");
	background-position: center center;
	background-size: cover;
	transform: scale(1.02);
	animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero__veil {
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(2, 20, 29, 0.74) 0%, rgba(2, 20, 29, 0.24) 46%, rgba(2, 20, 29, 0.08) 100%),
		linear-gradient(0deg, rgba(2, 20, 29, 0.62) 0%, transparent 48%, rgba(2, 20, 29, 0.35) 100%);
}

.hero__grain {
	z-index: -1;
	opacity: 0.18;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
	mix-blend-mode: soft-light;
	pointer-events: none;
}

@keyframes hero-breathe {
	to {
		transform: scale(1.07) translate3d(-0.7%, -0.4%, 0);
	}
}

.hero__content {
	max-width: 860px;
}

.hero__eyebrow {
	margin-bottom: clamp(24px, 4vh, 48px);
	color: var(--aqua-bright);
}

.hero h1,
.rhythm__heading h2,
.menu-section h2,
.sister-cta h2,
.picnic h2,
.agenda h2,
.location h2,
.booking h2,
.closing-cta h2 {
	margin: 0;
	font-size: clamp(4.7rem, 10.2vw, 10.5rem);
	font-weight: 800;
	letter-spacing: -0.085em;
	line-height: 0.76;
	text-wrap: balance;
}

.hero h1 em,
.rhythm__heading h2 em,
.menu-section h2 em,
.sister-cta h2 em,
.picnic h2 em,
.agenda h2 em,
.location h2 em,
.booking h2 em,
.closing-cta h2 em {
	font-family: var(--serif);
	font-weight: 400;
	letter-spacing: -0.07em;
}

.hero h1 em {
	color: var(--aqua-bright);
}

.hero__lede {
	margin: clamp(26px, 4vh, 42px) 0 0;
	font-family: var(--serif);
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	font-style: italic;
}

.hero__actions {
	display: flex;
	align-items: center;
	gap: 32px;
	margin-top: 34px;
}

.hero__aside {
	position: absolute;
	right: clamp(24px, 4vw, 64px);
	bottom: clamp(70px, 9vh, 100px);
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(0.72rem, 0.8vw, 0.9rem);
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.75;
	text-transform: uppercase;
}

.hero__scroll {
	position: absolute;
	top: 50%;
	right: 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transform: translateY(-50%);
}

.hero__scroll span {
	writing-mode: vertical-rl;
}

.hero__scroll i {
	width: 1px;
	height: 60px;
	background: linear-gradient(var(--white) 0 50%, rgba(255, 255, 255, 0.2) 50%);
	background-size: 100% 200%;
	animation: scroll-line 2s ease infinite;
}

@keyframes scroll-line {
	0% {
		background-position: 0 -100%;
	}
	100% {
		background-position: 0 100%;
	}
}

.marquee {
	overflow: hidden;
	border-bottom: 1px solid var(--line);
	background: var(--aqua-bright);
}

.marquee__track {
	display: flex;
	align-items: center;
	gap: 32px;
	width: max-content;
	padding: 17px 0;
	font-family: var(--serif);
	font-size: 0.95rem;
	font-style: italic;
	animation: marquee 34s linear infinite;
}

.marquee__track span {
	white-space: nowrap;
}

.marquee__track i {
	font-family: var(--sans);
	font-style: normal;
}

@keyframes marquee {
	to {
		transform: translateX(-50%);
	}
}

.manifesto {
	background: var(--paper);
}

.manifesto__grid {
	display: grid;
	grid-template-columns: minmax(130px, 0.42fr) 2.58fr;
	gap: 6vw;
}

.section-kicker {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.section-kicker span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 0.58rem;
}

.section-kicker p {
	margin: 8px 0 0;
}

.manifesto__copy {
	display: grid;
	gap: clamp(50px, 8vw, 110px);
}

.display-copy {
	margin: 0;
	max-width: 1120px;
	font-size: clamp(3rem, 7vw, 7.7rem);
	font-weight: 750;
	letter-spacing: -0.075em;
	line-height: 0.92;
}

.display-copy em {
	color: var(--aqua);
	font-family: var(--serif);
	font-weight: 400;
}

.manifesto__body {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(34px, 6vw, 90px);
	margin-left: auto;
	max-width: 850px;
}

.manifesto__body p {
	margin: 0;
	font-size: clamp(1rem, 1.4vw, 1.25rem);
	line-height: 1.65;
}

.rhythm {
	padding-top: 0;
	background: var(--paper);
}

.rhythm__heading {
	display: grid;
	grid-template-columns: 1fr 2.2fr;
	align-items: end;
	margin-bottom: clamp(48px, 7vw, 90px);
}

.rhythm__heading h2 {
	font-size: clamp(3.5rem, 7.6vw, 8rem);
}

.rhythm__heading h2 em {
	color: var(--aqua);
}

.rhythm__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	min-height: 590px;
}

.rhythm-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 570px;
	padding: 30px;
	overflow: hidden;
	color: var(--ink);
	transition:
		transform 450ms var(--ease),
		border-radius 450ms var(--ease);
}

.rhythm-card:hover {
	z-index: 2;
	border-radius: 0 0 90px 0;
	transform: translateY(-18px);
}

.rhythm-card--dawn {
	background: var(--aqua-soft);
}

.rhythm-card--day {
	background: var(--sun);
}

.rhythm-card--sunset {
	background: var(--coral);
	color: var(--white);
}

.rhythm-card--night {
	background: var(--ink);
	color: var(--white);
}

.rhythm-card__time {
	margin: 0;
	font-family: var(--serif);
	font-size: 1.25rem;
	font-style: italic;
}

.rhythm-card__tag {
	margin: 0 0 18px;
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.rhythm-card h3 {
	margin: 0;
	font-size: clamp(2.2rem, 3vw, 3.6rem);
	font-weight: 750;
	letter-spacing: -0.07em;
	line-height: 0.9;
}

.rhythm-card div > p:last-child {
	margin: 24px 0 0;
	max-width: 230px;
	font-size: 0.92rem;
}

.rhythm-card__number {
	position: absolute;
	right: -10px;
	bottom: -42px;
	font-size: 12rem;
	font-weight: 900;
	letter-spacing: -0.1em;
	line-height: 1;
	opacity: 0.1;
}

.menu-section {
	background: var(--ink);
	color: var(--white);
}

.menu-section__intro {
	display: grid;
	grid-template-columns: 0.7fr 2.3fr;
	gap: 5vw;
	align-items: start;
	margin-bottom: clamp(65px, 9vw, 120px);
}

.section-kicker--light {
	color: var(--aqua-bright);
}

.menu-section__title {
	display: grid;
	grid-template-columns: 1.5fr 0.7fr;
	align-items: end;
	gap: clamp(30px, 5vw, 80px);
}

.menu-section h2 {
	font-size: clamp(4rem, 8.5vw, 9rem);
}

.menu-section h2 em {
	color: var(--aqua-bright);
}

.menu-section__title > p {
	margin: 0 0 7px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 1rem;
	line-height: 1.7;
}

.product-gallery {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr 0.75fr;
	grid-template-rows: repeat(2, minmax(260px, 350px));
	gap: 14px;
}

.product-card {
	position: relative;
	min-height: 300px;
	overflow: hidden;
	background: #152f38;
}

.product-card--tall {
	grid-row: 1 / 3;
}

.product-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 900ms var(--ease);
}

.product-card:hover img {
	transform: scale(1.055);
}

.product-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(3, 18, 25, 0.82), transparent 55%);
	content: "";
	pointer-events: none;
}

.product-card__label {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 2;
}

.product-card__label span {
	display: block;
	margin-bottom: 8px;
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.product-card__label h3 {
	margin: 0;
	font-size: clamp(1.6rem, 3vw, 3.1rem);
	font-weight: 750;
	letter-spacing: -0.06em;
	line-height: 0.95;
}

.product-card--aqua {
	display: flex;
	align-items: center;
	background: var(--aqua-bright);
	color: var(--ink);
}

.product-card--aqua::after {
	display: none;
}

.product-card--aqua .product-card__label {
	position: relative;
	right: auto;
	bottom: auto;
	left: auto;
	padding: 35px;
}

.product-card--aqua .product-card__label p {
	margin: 16px 0 0;
	max-width: 300px;
}

.product-card__symbol {
	position: absolute;
	top: -72px;
	right: -12px;
	margin: 0;
	font-family: var(--serif);
	font-size: 14rem;
	opacity: 0.18;
}

.menu-categories {
	margin-top: clamp(70px, 9vw, 120px);
	border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.menu-category {
	display: grid;
	grid-template-columns: 70px 0.9fr 1.1fr;
	align-items: center;
	gap: 24px;
	padding: 27px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.17);
	transition:
		color 250ms ease,
		padding 250ms var(--ease);
}

.menu-category:hover {
	padding-left: 18px;
	color: var(--aqua-bright);
}

.menu-category p {
	margin: 0;
	font-family: var(--serif);
	font-style: italic;
	opacity: 0.48;
}

.menu-category h3 {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 2.9rem);
	font-weight: 700;
	letter-spacing: -0.055em;
}

.menu-category span {
	color: rgba(255, 255, 255, 0.57);
	font-size: 0.88rem;
}

.delivery-strip {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
	margin-top: 70px;
	padding: 28px 32px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 90px;
}

.delivery-strip p,
.delivery-strip small {
	margin: 0;
}

.delivery-strip p {
	font-family: var(--serif);
	font-size: 1.25rem;
	font-style: italic;
}

.delivery-strip div {
	display: flex;
	align-items: center;
	gap: 24px;
	font-size: clamp(1.1rem, 2vw, 1.7rem);
	font-weight: 900;
	letter-spacing: -0.04em;
}

.delivery-strip i {
	color: var(--aqua-bright);
	font-family: var(--serif);
	font-weight: 400;
}

.delivery-strip small {
	justify-self: end;
	color: rgba(255, 255, 255, 0.52);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.agenda {
	background: var(--aqua-bright);
}

.agenda__header {
	display: grid;
	grid-template-columns: 1.7fr 0.7fr;
	gap: 8vw;
	align-items: end;
	margin-bottom: clamp(65px, 8vw, 110px);
}

.agenda h2 {
	margin-top: 22px;
	font-size: clamp(4rem, 8vw, 8.5rem);
}

.agenda h2 em {
	color: var(--white);
}

.agenda__header > p {
	margin: 0;
	max-width: 460px;
	font-size: 1.08rem;
	line-height: 1.65;
}

.agenda-list {
	border-top: 1px solid var(--ink);
}

.event-row {
	display: grid;
	grid-template-columns: 90px 100px 1fr auto 52px;
	align-items: center;
	gap: 30px;
	min-height: 142px;
	border-bottom: 1px solid var(--ink);
	transition:
		background-color 300ms ease,
		padding 300ms var(--ease);
}

.event-row:hover {
	padding-inline: 22px;
	background: rgba(255, 255, 255, 0.25);
}

.event-row p {
	margin: 0;
}

.event-row__day {
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.event-row__time {
	font-family: var(--serif);
	font-size: 1.15rem;
	font-style: italic;
}

.event-row h3 {
	margin: 0 0 7px;
	font-size: clamp(1.5rem, 2.6vw, 2.7rem);
	font-weight: 750;
	letter-spacing: -0.055em;
}

.event-row div p {
	font-size: 0.88rem;
	opacity: 0.75;
}

.event-row__status {
	padding: 8px 13px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 0.61rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	white-space: nowrap;
}

.event-row > a {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--white);
	font-size: 1.1rem;
	transition: transform 250ms var(--ease);
}

.event-row > a:hover {
	transform: rotate(45deg);
}

.location {
	position: relative;
	display: grid;
	grid-template-columns: 1.55fr 0.9fr;
	min-height: 900px;
	padding: 0;
	background: var(--sand);
}

.location__media {
	min-height: 900px;
	background:
		linear-gradient(0deg, rgba(5, 24, 32, 0.1), rgba(5, 24, 32, 0.1)),
		url("assets/images/laolita-hero.jpg") center / cover;
}

.location__card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(55px, 7vw, 110px);
	background: var(--paper);
}

.location h2 {
	margin-top: 30px;
	font-size: clamp(3.7rem, 6.3vw, 7rem);
}

.location h2 em {
	color: var(--aqua);
}

.location__card > p:not(.eyebrow) {
	margin: 44px 0 0;
	max-width: 520px;
	font-size: 1.02rem;
	line-height: 1.7;
}

.location__meta {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin: 45px 0;
	padding: 24px 0;
	border-block: 1px solid var(--line);
}

.location__meta div {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.location__meta span {
	font-size: 0.64rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.location__meta strong {
	font-family: var(--serif);
	font-size: 1.15rem;
	font-style: italic;
	font-weight: 400;
}

.location .text-link {
	align-self: flex-start;
}

.booking {
	background: var(--coral);
	color: var(--white);
}

.booking__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: clamp(55px, 8vw, 130px);
	align-items: start;
}

.booking__intro {
	position: sticky;
	top: 110px;
}

.booking h2 {
	margin-top: 30px;
	font-size: clamp(4rem, 7.2vw, 7.7rem);
}

.booking h2 em {
	color: var(--ink);
}

.booking__intro > p:not(.eyebrow) {
	max-width: 540px;
	margin: 42px 0 0;
	font-size: 1.05rem;
	line-height: 1.7;
}

.booking__contact {
	display: flex;
	flex-direction: column;
	margin-top: 65px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.booking__contact span {
	margin-bottom: 6px;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.booking__contact strong {
	font-family: var(--serif);
	font-size: 1.35rem;
	font-style: italic;
	font-weight: 400;
}

.booking__contact small {
	margin-top: 5px;
	color: rgba(255, 255, 255, 0.72);
}

.booking-panel {
	padding: clamp(30px, 4.2vw, 64px);
	background: var(--white);
	color: var(--ink);
}

.form-notice {
	margin-bottom: 30px;
	padding: 19px 21px;
	border-left: 4px solid currentColor;
}

.form-notice p {
	margin: 4px 0 0;
	font-size: 0.9rem;
}

.form-notice--success {
	background: #daf3e4;
	color: #185e36;
}

.form-notice--error {
	background: #fde3dc;
	color: #8d2513;
}

.booking-form {
	display: grid;
	gap: 26px;
}

.form-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(1px, 1px, 1px, 1px) !important;
	white-space: nowrap !important;
}

.booking-types {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin: 0 0 6px;
	padding: 0;
	border: 0;
}

.booking-types legend {
	width: 100%;
	margin-bottom: 13px;
	font-size: 0.69rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.booking-types label {
	cursor: pointer;
}

.booking-types input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.booking-types span {
	display: grid;
	place-items: center;
	min-height: 46px;
	border: 1px solid var(--line);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition:
		background 200ms ease,
		color 200ms ease;
}

.booking-types input:checked + span {
	background: var(--ink);
	color: var(--white);
}

.booking-types input:focus-visible + span {
	outline: 3px solid var(--aqua);
	outline-offset: 2px;
}

.form-row {
	display: grid;
	gap: 9px;
}

.form-row--split {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.form-row label,
.booking-form > label:not(.consent) {
	display: grid;
	gap: 8px;
}

.form-row label > span,
.booking-form > label:not(.consent) > span {
	font-size: 0.67rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.form-row small {
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
}

.booking-form input[type="date"],
.booking-form input[type="time"],
.booking-form input[type="number"],
.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form textarea {
	width: 100%;
	border: 0;
	border-bottom: 1px solid rgba(6, 27, 36, 0.42);
	border-radius: 0;
	background: transparent;
	color: var(--ink);
	padding: 11px 2px 13px;
	outline: 0;
	transition: border-color 200ms ease;
}

.booking-form textarea {
	min-height: 100px;
	resize: vertical;
}

.booking-form input:focus,
.booking-form textarea:focus {
	border-color: var(--aqua);
}

.consent {
	display: grid;
	grid-template-columns: 18px 1fr;
	gap: 12px;
	align-items: start;
	font-size: 0.72rem;
	line-height: 1.45;
}

.consent input {
	width: 17px;
	height: 17px;
	margin: 2px 0 0;
	accent-color: var(--ink);
}

.consent a {
	border-bottom: 1px solid currentColor;
}

.pill--submit {
	width: 100%;
	min-height: 58px;
	border: 0;
	background: var(--ink);
	color: var(--white);
	cursor: pointer;
}

.pill--submit i {
	margin-left: auto;
	font-size: 1rem;
	font-style: normal;
}

.pill--submit:hover {
	background: var(--aqua);
}

.closing-cta {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 80svh;
	padding: 100px 24px;
	overflow: hidden;
	background:
		linear-gradient(rgba(3, 22, 31, 0.5), rgba(3, 22, 31, 0.7)),
		url("assets/images/laolita-hero.jpg") center 58% / cover fixed;
	color: var(--white);
	text-align: center;
}

.closing-cta__content {
	max-width: 1050px;
}

.closing-cta h2 {
	margin: 32px 0 48px;
	font-size: clamp(4rem, 9.7vw, 10rem);
}

.closing-cta h2 em {
	color: var(--aqua-bright);
}

.pill--outline-light {
	border-color: rgba(255, 255, 255, 0.75);
}

.pill--outline-light:hover {
	background: var(--white);
	color: var(--ink);
}

.site-footer {
	padding: 75px 0 25px;
	background: var(--ink);
	color: var(--white);
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.7fr;
	gap: 60px;
	align-items: start;
	padding-bottom: 70px;
}

.brand--footer {
	font-size: clamp(2.2rem, 4vw, 4rem);
}

.brand--footer .brand__wave {
	width: 54px;
	height: 54px;
}

.site-footer__top > p {
	margin: 7px 0 0;
	color: rgba(255, 255, 255, 0.62);
	font-family: var(--serif);
	font-size: 1.15rem;
	font-style: italic;
}

.site-footer__links {
	display: grid;
	gap: 12px;
	justify-self: end;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.site-footer__links a:hover {
	color: var(--aqua-bright);
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-footer__bottom p {
	margin: 0;
}

.site-footer__bottom p:last-child {
	justify-self: end;
}

.site-footer__bottom div {
	display: flex;
	gap: 24px;
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 900ms var(--ease),
		transform 900ms var(--ease);
}

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

.legal-page {
	min-height: 100vh;
	padding: 90px 0;
	background: var(--paper);
}

.legal-page__inner {
	max-width: 850px;
}

.brand--dark {
	color: var(--ink);
}

.legal-page h1 {
	margin: 80px 0 35px;
	font-size: clamp(3rem, 7vw, 6rem);
	letter-spacing: -0.07em;
	line-height: 0.9;
}

.legal-page p {
	max-width: 720px;
	font-size: 1.05rem;
	line-height: 1.7;
}

/* La Olita activities bridge */
.sister-cta {
	overflow: hidden;
	background: var(--aqua);
	color: var(--white);
}

.sister-cta__grid {
	display: grid;
	grid-template-columns: 1.18fr 0.82fr;
	gap: clamp(55px, 8vw, 130px);
	align-items: center;
}

.sister-cta__visual {
	position: relative;
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	grid-template-rows: 1.15fr 0.85fr;
	gap: 12px;
	min-height: 760px;
	transform: rotate(-1deg);
}

.sister-cta__visual::after {
	position: absolute;
	right: -32px;
	bottom: 15%;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 120px;
	height: 120px;
	border: 2px solid var(--ink);
	border-radius: 50%;
	background: var(--sun);
	color: var(--ink);
	content: "MOVE\A WITH\A THE SEA";
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1.25;
	text-align: center;
	white-space: pre;
	transform: rotate(8deg);
}

.sister-cta figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: var(--ink);
}

.sister-cta figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sister-cta figcaption {
	position: absolute;
	right: 14px;
	bottom: 13px;
	padding: 7px 10px;
	background: var(--white);
	color: var(--ink);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sister-cta__yoga {
	grid-row: 1 / 3;
}

.sister-cta__yoga img {
	object-position: center 25%;
}

.sister-cta__surf img {
	object-position: center;
}

.sister-cta__kite img {
	object-position: 62% center;
}

.sister-cta__copy .eyebrow {
	color: var(--sun);
}

.sister-cta h2 {
	margin-top: 28px;
	font-size: clamp(4rem, 7vw, 7.8rem);
}

.sister-cta h2 em {
	color: var(--ink);
}

.sister-cta__copy > p:not(.eyebrow) {
	max-width: 570px;
	margin: 42px 0 0;
	font-size: 1.08rem;
	line-height: 1.75;
}

.sister-cta__links {
	display: grid;
	margin: 42px 0 36px;
	border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.sister-cta__links a {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 17px 2px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
	font-size: 0.73rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: padding 250ms var(--ease), color 250ms ease;
}

.sister-cta__links a:hover {
	padding-inline: 12px;
	color: var(--sun);
}

.pill--dark {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--white);
}

.pill--dark:hover {
	border-color: var(--white);
	background: var(--white);
	color: var(--ink);
}

/* All-day food catalog */
.food-stage {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	min-height: 460px;
	margin-bottom: clamp(60px, 8vw, 110px);
	background: var(--sun);
	color: var(--ink);
}

.food-stage > img {
	width: 100%;
	height: 100%;
	min-height: 460px;
	object-fit: cover;
}

.food-stage > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(38px, 5vw, 78px);
}

.food-stage h3 {
	margin: 22px 0 0;
	max-width: 550px;
	font-size: clamp(2.7rem, 5vw, 5.5rem);
	font-weight: 800;
	letter-spacing: -0.075em;
	line-height: 0.9;
}

.food-stage div > p:last-child {
	margin: 30px 0 0;
	max-width: 500px;
	line-height: 1.65;
}

.catalog-grid {
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.catalog-card {
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.catalog-card summary {
	display: grid;
	grid-template-columns: 72px 1fr 56px;
	gap: 24px;
	align-items: center;
	min-height: 130px;
	cursor: pointer;
	list-style: none;
}

.catalog-card summary::-webkit-details-marker {
	display: none;
}

.catalog-card__number {
	color: var(--aqua-bright);
	font-family: var(--serif);
	font-size: 1.15rem;
	font-style: italic;
}

.catalog-card summary h3 {
	margin: 0;
	font-size: clamp(2rem, 3.5vw, 4rem);
	font-weight: 760;
	letter-spacing: -0.065em;
	line-height: 0.9;
}

.catalog-card summary p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.85rem;
}

.catalog-card summary i {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	font-size: 1.6rem;
	font-style: normal;
	font-weight: 300;
	transition: transform 300ms var(--ease), background 300ms ease, color 300ms ease;
}

.catalog-card[open] summary i {
	background: var(--aqua-bright);
	color: var(--ink);
	transform: rotate(45deg);
}

.catalog-card__body {
	display: grid;
	grid-template-columns: minmax(300px, 0.7fr) 1.3fr;
	gap: clamp(35px, 6vw, 100px);
	align-items: start;
	padding: 5px 0 65px 96px;
}

.catalog-card__body > img {
	width: 100%;
	max-height: 470px;
	object-fit: contain;
	background: var(--aqua-soft);
}

.catalog-card__body ul,
.bubble-group ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.catalog-card__body ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 34px;
}

.catalog-card__body li,
.bubble-group li {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 12px 0;
	border-bottom: 1px dotted rgba(255, 255, 255, 0.22);
	font-size: 0.87rem;
}

.catalog-card__body li strong,
.bubble-group li strong {
	color: var(--aqua-bright);
	font-family: var(--serif);
	font-weight: 400;
	white-space: nowrap;
}

.price-note {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	margin: 28px 0 0;
	color: rgba(255, 255, 255, 0.45);
	font-size: 0.66rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.price-note p {
	margin: 0;
}

.bubble-menu {
	position: relative;
	margin-top: clamp(90px, 12vw, 170px);
	padding: clamp(45px, 7vw, 95px);
	overflow: hidden;
	background: #8ab7d6;
	color: #0d4da1;
}

.bubble-menu::before {
	position: absolute;
	top: -0.35em;
	right: -0.08em;
	content: "LAOLITA";
	color: rgba(255, 254, 248, 0.28);
	font-size: clamp(6rem, 15vw, 14rem);
	font-weight: 900;
	letter-spacing: -0.09em;
	line-height: 1;
}

.bubble-menu__head {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.7fr 1.25fr 0.7fr;
	gap: 40px;
	align-items: end;
	margin-bottom: 75px;
}

.bubble-menu__head h3 {
	margin: 0;
	font-size: clamp(4rem, 8vw, 8.2rem);
	font-weight: 800;
	letter-spacing: -0.08em;
	line-height: 0.76;
}

.bubble-menu__head h3 em {
	color: var(--white);
	font-family: var(--serif);
	font-weight: 400;
}

.bubble-menu__head > p:last-child {
	margin: 0;
	color: var(--ink);
	line-height: 1.65;
}

.bubble-menu__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 45px 36px;
}

.bubble-group h4 {
	margin: 0 0 14px;
	color: var(--white);
	font-size: 1.2rem;
	letter-spacing: -0.035em;
}

.bubble-group li {
	border-color: rgba(13, 77, 161, 0.25);
	color: var(--ink);
}

.bubble-group li strong {
	color: #0d4da1;
}

/* Merendero */
.picnic {
	background: var(--sun);
}

.picnic__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(55px, 8vw, 120px);
	align-items: center;
}

.picnic__media {
	position: relative;
}

.picnic__media img {
	width: 100%;
	min-height: 720px;
	object-fit: cover;
}

.picnic__media p {
	position: absolute;
	right: -35px;
	bottom: 35px;
	max-width: 290px;
	margin: 0;
	padding: 25px;
	background: var(--coral);
	color: var(--white);
	font-family: var(--serif);
	font-size: 1.35rem;
	font-style: italic;
	line-height: 1.25;
	transform: rotate(-3deg);
}

.picnic h2 {
	margin: 28px 0 0;
	font-size: clamp(4rem, 7vw, 7.5rem);
}

.picnic h2 em {
	color: var(--coral);
}

.picnic__content > p:not(.eyebrow) {
	max-width: 570px;
	margin: 38px 0 0;
	font-size: 1.05rem;
	line-height: 1.7;
}

.picnic__prices {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 45px 0 38px;
}

.picnic__prices article {
	display: flex;
	flex-direction: column;
	min-height: 260px;
	padding: 26px;
	background: var(--white);
	color: var(--ink);
}

.picnic__prices article > span {
	font-size: 0.66rem;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.picnic__prices article > strong {
	margin-top: auto;
	font-size: clamp(4rem, 6vw, 6.7rem);
	letter-spacing: -0.08em;
	line-height: 0.85;
}

.picnic__prices article p {
	margin: 18px 0 0;
	font-size: 0.78rem;
}

.picnic__prices article small {
	margin-top: 15px;
	padding-top: 13px;
	border-top: 1px solid var(--line);
	font-size: 0.62rem;
	line-height: 1.35;
}

.picnic__prices .picnic__byob {
	background: var(--ink);
	color: var(--white);
}

.picnic__byob strong {
	color: var(--aqua-bright);
}

.picnic__byob small {
	border-color: rgba(255, 255, 255, 0.25) !important;
}

/* Agenda editorial cards */
.agenda-feature {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 80px;
}

.agenda-feature article {
	position: relative;
	min-height: 670px;
	overflow: hidden;
	background: var(--ink);
	color: var(--white);
}

.agenda-feature article > img {
	width: 100%;
	height: 100%;
	min-height: 670px;
	object-fit: cover;
	transition: transform 900ms var(--ease);
}

.agenda-feature article:last-child > img {
	object-position: center 25%;
}

.agenda-feature article:hover > img {
	transform: scale(1.04);
}

.agenda-feature article::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(3, 18, 25, 0.9), transparent 65%);
	content: "";
}

.agenda-feature article > div {
	position: absolute;
	right: 35px;
	bottom: 35px;
	left: 35px;
	z-index: 1;
}

.agenda-feature h3 {
	margin: 14px 0 0;
	font-size: clamp(2.5rem, 4.5vw, 5rem);
	letter-spacing: -0.07em;
	line-height: 0.9;
}

.agenda-feature div > p:last-child {
	margin: 20px 0 0;
	max-width: 470px;
	color: rgba(255, 255, 255, 0.78);
}

/* Place gallery */
.place-gallery {
	display: grid;
	grid-template-columns: 1.25fr 0.75fr;
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 8px;
	min-height: 900px;
	padding: 8px;
	background: var(--ink);
}

.place-gallery figure {
	margin: 0;
	overflow: hidden;
}

.place-gallery__main {
	grid-row: 1 / 3;
}

.place-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.place-gallery figure:nth-child(2) img {
	object-position: center;
}

@media (max-width: 1100px) {
	.site-header {
		grid-template-columns: 1fr 1fr;
	}

	.site-nav {
		position: fixed;
		inset: 0;
		z-index: -1;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 110px 28px 50px;
		background: var(--ink);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-15px);
		transition:
			opacity 300ms ease,
			transform 300ms var(--ease);
	}

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

	.site-nav a {
		font-size: clamp(2.6rem, 8vw, 5.5rem);
		font-weight: 750;
		letter-spacing: -0.055em;
		text-transform: none;
	}

	.site-nav a::after {
		display: none;
	}

	.pill--header {
		display: none;
	}

	.menu-toggle {
		display: grid;
		justify-self: end;
		width: 48px;
		height: 48px;
		padding: 0;
		border: 1px solid currentColor;
		border-radius: 50%;
		background: transparent;
		cursor: pointer;
	}

	.menu-toggle span:not(.screen-reader-text) {
		grid-area: 1 / 1;
		align-self: center;
		justify-self: center;
		width: 18px;
		height: 1px;
		background: currentColor;
		transition: transform 250ms ease;
	}

	.menu-toggle span:first-child {
		transform: translateY(-3px);
	}

	.menu-toggle span:nth-child(2) {
		transform: translateY(3px);
	}

	.menu-open .menu-toggle span:first-child {
		transform: rotate(45deg);
	}

	.menu-open .menu-toggle span:nth-child(2) {
		transform: rotate(-45deg);
	}

	.hero__aside {
		display: none;
	}

	.manifesto__grid,
	.menu-section__intro {
		grid-template-columns: 1fr;
	}

	.manifesto__copy {
		gap: 70px;
	}

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

	.rhythm-card {
		min-height: 480px;
	}

	.product-gallery {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, minmax(310px, 480px));
	}

	.product-card--tall {
		grid-row: auto;
	}

	.menu-category {
		grid-template-columns: 60px 1fr;
	}

	.menu-category span {
		grid-column: 2;
	}

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

	.location__card {
		padding: 60px 44px;
	}

	.booking__grid {
		grid-template-columns: 0.85fr 1.15fr;
		gap: 50px;
	}
}

@media (max-width: 800px) {
	:root {
		--shell: min(100% - 32px, 1380px);
	}

	.section {
		padding-block: 88px;
	}

	.site-header {
		height: 70px;
		padding-inline: 16px;
	}

	.brand {
		font-size: 0.94rem;
	}

	.brand__wave {
		width: 30px;
		height: 30px;
	}

	.menu-toggle {
		width: 42px;
		height: 42px;
	}

	.hero {
		min-height: 100svh;
		padding: 120px 24px 52px;
	}

	.hero__media {
		background-position: 61% center;
	}

	.hero__veil {
		background:
			linear-gradient(90deg, rgba(2, 20, 29, 0.45), rgba(2, 20, 29, 0.07)),
			linear-gradient(0deg, rgba(2, 20, 29, 0.82) 0%, rgba(2, 20, 29, 0.18) 72%, rgba(2, 20, 29, 0.36) 100%);
	}

	.hero h1 {
		font-size: clamp(4rem, 21vw, 7.2rem);
		line-height: 0.8;
	}

	.hero__lede {
		font-size: 1.12rem;
	}

	.hero__actions {
		align-items: flex-start;
		flex-direction: column;
		gap: 22px;
	}

	.hero__scroll {
		display: none;
	}

	.manifesto__body {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.display-copy {
		font-size: clamp(3rem, 13vw, 5rem);
	}

	.rhythm__heading,
	.menu-section__title,
	.agenda__header,
	.booking__grid {
		grid-template-columns: 1fr;
	}

	.rhythm__heading {
		gap: 30px;
	}

	.rhythm__heading h2 {
		font-size: clamp(3.6rem, 16vw, 6rem);
	}

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

	.rhythm-card {
		min-height: 420px;
	}

	.rhythm-card:hover {
		border-radius: 0;
		transform: none;
	}

	.menu-section__title {
		gap: 35px;
	}

	.product-gallery {
		grid-template-columns: 1fr;
		grid-template-rows: none;
	}

	.product-card {
		aspect-ratio: 4 / 5;
	}

	.product-card--aqua {
		aspect-ratio: 1 / 0.8;
	}

	.menu-category {
		grid-template-columns: 42px 1fr;
		gap: 10px;
	}

	.menu-category h3 {
		font-size: 1.65rem;
	}

	.menu-category span {
		margin-top: 6px;
	}

	.delivery-strip {
		grid-template-columns: 1fr;
		border-radius: 24px;
		text-align: center;
	}

	.delivery-strip div,
	.delivery-strip small {
		justify-self: center;
	}

	.agenda__header {
		gap: 38px;
	}

	.event-row {
		grid-template-columns: 50px 1fr 44px;
		gap: 10px;
		padding: 25px 0;
	}

	.event-row__time {
		grid-column: 1;
	}

	.event-row > div {
		grid-column: 2;
		grid-row: 1 / 3;
	}

	.event-row__status {
		grid-column: 2;
		grid-row: 3;
		justify-self: start;
		margin-top: 10px;
	}

	.event-row > a {
		grid-column: 3;
		grid-row: 1 / 3;
	}

	.event-row:hover {
		padding-inline: 0;
	}

	.location {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.location__media {
		min-height: 60svh;
		background-position: 54% center;
	}

	.location__card {
		padding: 80px 24px;
	}

	.booking__grid {
		gap: 60px;
	}

	.booking__intro {
		position: static;
	}

	.booking-panel {
		margin-inline: -16px;
		padding: 32px 20px;
	}

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

	.form-row--split {
		grid-template-columns: 1fr;
	}

	.closing-cta {
		background-attachment: scroll;
	}

	.site-footer__top,
	.site-footer__bottom {
		grid-template-columns: 1fr;
	}

	.site-footer__links {
		justify-self: start;
	}

	.site-footer__bottom div {
		flex-wrap: wrap;
	}

	.site-footer__bottom p:last-child {
		justify-self: start;
	}
}

@media (max-width: 1100px) {
	.sister-cta__grid {
		grid-template-columns: 1fr;
	}

	.sister-cta__visual {
		min-height: 650px;
	}

	.bubble-menu__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.picnic__grid {
		grid-template-columns: 0.9fr 1.1fr;
		gap: 45px;
	}

	.picnic__media img {
		min-height: 640px;
	}

	.place-gallery {
		min-height: 760px;
	}
}

@media (max-width: 800px) {
	.sister-cta__visual {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1.25fr 0.75fr;
		min-height: 600px;
	}

	.sister-cta__yoga {
		grid-column: 1 / 3;
		grid-row: auto;
	}

	.sister-cta__visual::after {
		right: -8px;
		width: 92px;
		height: 92px;
		font-size: 0.56rem;
	}

	.sister-cta h2 {
		font-size: clamp(3.8rem, 17vw, 6rem);
	}

	.food-stage {
		grid-template-columns: 1fr;
	}

	.food-stage > img {
		min-height: 360px;
	}

	.catalog-card summary {
		grid-template-columns: 38px 1fr 42px;
		gap: 12px;
		min-height: 112px;
	}

	.catalog-card summary i {
		width: 40px;
		height: 40px;
	}

	.catalog-card__body {
		grid-template-columns: 1fr;
		padding: 0 0 45px;
	}

	.catalog-card__body > img {
		max-height: 340px;
	}

	.catalog-card__body ul {
		grid-template-columns: 1fr;
	}

	.price-note {
		flex-direction: column;
		gap: 8px;
	}

	.bubble-menu {
		margin-inline: -16px;
		padding: 70px 22px;
	}

	.bubble-menu__head {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 55px;
	}

	.bubble-menu__head h3 {
		font-size: clamp(4rem, 20vw, 6.4rem);
	}

	.bubble-menu__grid {
		grid-template-columns: 1fr;
	}

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

	.picnic__media img {
		min-height: 520px;
	}

	.picnic__media p {
		right: 12px;
	}

	.picnic h2 {
		font-size: clamp(3.8rem, 17vw, 6rem);
	}

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

	.agenda-feature {
		grid-template-columns: 1fr;
		margin-bottom: 55px;
	}

	.agenda-feature article,
	.agenda-feature article > img {
		min-height: 540px;
	}

	.agenda-feature article > div {
		right: 24px;
		bottom: 24px;
		left: 24px;
	}

	.place-gallery {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1.3fr 0.7fr;
		min-height: 760px;
	}

	.place-gallery__main {
		grid-column: 1 / 3;
		grid-row: auto;
	}
}

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

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
