:root {
	--color-bg: #f9f9f9;
	--color-surface: #ffffff;
	--color-surface-soft: #f4efe9;
	--color-primary: #442a22;
	--color-brand-header: #625856;
	--color-primary-soft: rgba(68, 42, 34, 0.08);
	--color-secondary: #ff9800;
	--color-secondary-deep: #8b5000;
	--color-text: #1a1c1c;
	--color-muted: #665752;
	--color-border: rgba(93, 64, 55, 0.12);
	--color-whatsapp: #25d366;
	--color-whatsapp-soft: #dff4e6;
	--shadow-soft: 0 18px 44px rgba(68, 42, 34, 0.08);
	--shadow-strong: 0 28px 70px rgba(68, 42, 34, 0.18);
	--radius-sm: 0.5rem;
	--radius-md: 0.75rem;
	--radius-lg: 1rem;
	--radius-xl: 1.5rem;
	--container: 1200px;
	--container-narrow: 820px;
	--space-xs: 0.5rem;
	--space-sm: 0.75rem;
	--space-md: 1.25rem;
	--space-lg: 2rem;
	--space-xl: 3rem;
	--space-2xl: 5rem;
	--transition-base: 180ms ease;
}

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

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

body {
	margin: 0;
	overflow-x: hidden;
	font-family: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition-base), border-color var(--transition-base), background-color var(--transition-base), transform var(--transition-base);
}

a:hover {
	color: var(--color-secondary-deep);
}

:focus-visible {
	outline: 3px solid var(--color-secondary);
	outline-offset: 3px;
}

button,
input,
textarea,
select {
	font: inherit;
}

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

.screen-reader-text:focus {
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--color-surface);
	color: var(--color-text);
	z-index: 9999;
}

.container {
	width: min(calc(100% - 2rem), var(--container));
	max-width: calc(100vw - 2rem);
	margin: 0 auto;
}

.container--narrow {
	width: min(calc(100% - 2rem), var(--container-narrow));
}

.site-main {
	display: block;
}

.skip-link {
	border-radius: 999px;
}

.section {
	padding: 6.5rem 0;
}

.section--warm {
	background: var(--color-surface-soft);
}

.section--accent {
	position: relative;
	background:
		linear-gradient(135deg, rgba(68, 42, 34, 0.96), rgba(98, 88, 86, 0.92)),
		var(--color-primary);
	color: var(--color-surface);
}

.section--reviews {
	padding-top: 0;
}

.section-heading {
	max-width: 42rem;
	margin: 0 auto var(--space-xl);
	text-align: center;
}

.section-heading--left {
	margin-left: 0;
	text-align: left;
}

.section-heading h1,
.section-heading h2,
.not-found h1 {
	margin: 0;
	font-family: "Literata", Georgia, serif;
	font-size: clamp(2.2rem, 4vw, 4rem);
	line-height: 1.03;
	color: var(--color-primary);
}

.section--accent .section-heading h2 {
	color: var(--color-surface);
}

.section-copy,
.archive-description {
	color: var(--color-muted);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 0 0.75rem;
	color: var(--color-secondary-deep);
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.eyebrow--light {
	color: rgba(255, 255, 255, 0.82);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-height: 3.25rem;
	padding: 0.85rem 1.3rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
	line-height: 1;
}

.button:hover,
.button:focus-visible {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--color-secondary);
	color: var(--color-primary);
	box-shadow: 0 12px 24px rgba(255, 152, 0, 0.16);
}

.button--primary:hover,
.button--primary:focus-visible {
	background: var(--color-secondary-deep);
	color: var(--color-surface);
}

.button--whatsapp {
	background: var(--color-whatsapp);
	color: var(--color-surface);
	box-shadow: 0 12px 24px rgba(37, 211, 102, 0.18);
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
	background: #1fb457;
	color: var(--color-surface);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--color-border);
	color: var(--color-primary);
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: var(--color-surface);
}

.button--header {
	min-height: 2.75rem;
	padding-inline: 1.5rem;
	background: var(--color-secondary);
	color: var(--color-surface);
	box-shadow: none;
}

.button--header:hover,
.button--header:focus-visible {
	background: var(--color-secondary-deep);
	color: var(--color-surface);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: var(--color-brand-header);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1rem;
	min-height: 5.4rem;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	min-width: 0;
}

.site-branding__text {
	min-width: 0;
}

.site-logo img {
	max-height: 60px;
	width: auto;
	aspect-ratio: 319 / 160;
}

.site-title,
.site-description {
	margin: 0;
}

.site-title {
	font-size: 1.1rem;
	font-weight: 800;
}

.site-header .site-title a,
.site-header .menu a,
.site-header .site-description {
	color: var(--color-surface);
}

.site-description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.95rem;
}

.main-navigation {
	display: flex;
	justify-content: center;
}

.menu,
.hero__meta,
.check-list,
.menu-board__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.3rem;
}

.menu a {
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
}

.menu a:hover,
.menu a:focus-visible {
	color: rgba(255, 255, 255, 0.82);
}

.menu-toggle {
	display: none;
	padding: 0.7rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-surface);
}

.menu-toggle__label {
	line-height: 1;
}

body:not(.home) .menu-toggle {
	border-color: var(--color-border);
	background: var(--color-surface);
	color: var(--color-primary);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.site-header__phone {
	display: grid;
	justify-items: end;
	color: var(--color-surface);
	line-height: 1.2;
}

.site-header__phone-label {
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-header__phone-number {
	font-size: 1rem;
	font-weight: 800;
	white-space: nowrap;
}

.mobile-call-button {
	display: none;
}

.hero {
	position: relative;
	padding: 4.6rem 0 6.25rem;
	color: var(--color-surface);
	background: var(--color-bg);
}

.hero__panel {
	position: relative;
	overflow: hidden;
	min-height: 43rem;
	padding: 4rem;
	border-radius: 1.9rem;
	box-shadow: var(--shadow-strong);
	isolation: isolate;
}

.hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -3;
}

.hero__panel::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(20, 14, 11, 0.76) 0%, rgba(20, 14, 11, 0.62) 38%, rgba(20, 14, 11, 0.42) 62%, rgba(20, 14, 11, 0.2) 100%),
		linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45));
	z-index: -2;
}

.hero__panel::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255, 152, 0, 0.08), transparent 28%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12));
	z-index: -1;
}

.hero__frame {
	position: absolute;
	inset: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 1.5rem;
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	min-height: calc(43rem - 8rem);
	max-width: 46rem;
}

.hero__brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 15rem;
	max-width: 15rem;
	padding: 1.2rem 1.4rem;
	margin-bottom: 1.4rem;
	border-radius: 1.25rem;
	background: rgba(98, 88, 86, 0.9);
	box-shadow: 0 24px 44px rgba(20, 14, 11, 0.22);
}

.hero__brand-mark .custom-logo-link,
.hero__brand-mark .custom-logo-link img {
	display: block;
}

.hero__brand-mark img {
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: contain;
}

.hero__brand-text {
	font-family: "Literata", Georgia, serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
	color: var(--color-surface);
	text-align: center;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 44rem;
}

.hero__content h1 {
	margin: 0;
	font-family: "Literata", Georgia, serif;
	font-size: clamp(4rem, 10vw, 6.9rem);
	line-height: 0.9;
	color: var(--color-surface);
	text-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.hero__lead {
	max-width: 40rem;
	margin: 1.35rem 0 0;
	font-size: 1.12rem;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	margin-top: 1.6rem;
}

.hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.8rem;
	font-size: 0.95rem;
}

.hero__meta li {
	padding: 0.7rem 1rem;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	backdrop-filter: blur(10px);
	font-weight: 700;
}

.hero__visual {
	position: relative;
	min-height: 32rem;
}

.hero__photo-frame {
	position: absolute;
	inset: 0 0 2.5rem 3rem;
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-strong);
}

.hero__photo {
	width: 100%;
	height: 100%;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
		linear-gradient(135deg, rgba(255, 152, 0, 0.14), transparent 42%),
		url("../img/hero.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero__photo--primary::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 38%;
	background:
		linear-gradient(180deg, transparent, rgba(34, 22, 18, 0.46));
}

.hero-card,
.menu-board,
.specialty-card,
.contact-card,
.post-card,
.map-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}

.hero-card {
	padding: 1.5rem;
	color: var(--color-text);
}

.hero-card--floating {
	position: absolute;
	bottom: 0;
	left: 0;
	width: min(19rem, 88%);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(10px);
}

.hero-card__label,
.specialty-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.65rem;
	margin-bottom: 0.9rem;
	border-radius: 999px;
	background: var(--color-primary-soft);
	color: var(--color-secondary-deep);
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.steps-grid,
.specialties-grid,
.services-grid,
.reviews-grid,
.post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem;
}

.step-card,
.service-card,
.review-card {
	padding: 0;
}

.step-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	margin-bottom: 1rem;
	border-radius: 999px;
	background: rgba(255, 152, 0, 0.12);
	color: var(--color-secondary-deep);
	font-weight: 700;
}

.step-card h3,
.service-card h3,
.review-card h3,
.specialty-card h3 {
	font-family: "Literata", Georgia, serif;
	font-size: 1.75rem;
	line-height: 1.08;
	color: var(--color-primary);
	margin: 0 0 0.85rem;
}

.step-card p,
.service-card p,
.review-card p,
.specialty-card p {
	margin: 0;
	color: var(--color-muted);
}

.section--process .steps-grid {
	align-items: start;
}

#menu-diario {
	padding-inline: 20px;
}

.menu-feature {
	max-width: 1200px;
	margin: 0 auto;
	display: block;
}

.menu-feature__intro {
	max-width: 100%;
	margin: 0 auto 24px;
	padding-top: 0;
	text-align: center;
}

.menu-board {
	width: 100%;
	padding: 0;
	align-self: stretch;
	background: transparent;
	border: none;
	box-shadow: none;
	border-radius: 0;
}

.menu-board--editorial {
	box-shadow: none;
}

#menu-diario .section-heading {
	gap: 1rem;
	align-items: center;
}

#menu-diario .section-heading h2 {
	max-width: 100%;
	font-size: clamp(2.4rem, 5vw, 4.5rem);
	line-height: 1;
	text-align: center;
}

.menu-board__head {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--color-border);
	color: var(--color-muted);
}

.menu-board__head strong {
	color: var(--color-primary);
}

.menu-board__list {
	display: grid;
	gap: 0.9rem;
}

.menu-board__list li,
.check-list li {
	position: relative;
	padding-left: 1.1rem;
}

.menu-board__list li::before,
.check-list li::before {
	content: "";
	position: absolute;
	top: 0.7rem;
	left: 0;
	width: 0.45rem;
	height: 0.45rem;
	border-radius: 999px;
	background: var(--color-whatsapp);
}

.menu-board__footer {
	margin-top: 1.5rem;
}

.menu-board .rmm-menu-diario {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 24px;
	background: transparent;
	border: none;
	box-shadow: none;
	border-radius: 0;
}

.menu-board .rmm-platos-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px 20px;
	margin-top: 24px;
}

.menu-board .rmm-plato-card {
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 16px 18px;
	border: 0;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 40px rgba(68, 42, 34, 0.08);
}

.menu-board .rmm-plato-card__image {
	width: 96px;
	height: 82px;
}

.menu-board .rmm-plato-card__image img {
	width: 96px;
	height: 82px;
	max-height: 82px;
	object-fit: cover;
	border-radius: 16px;
}

.menu-board .rmm-plato-card__body {
	display: grid;
	gap: 0.45rem;
	min-width: 0;
}

.menu-board .rmm-plato-card__footer,
.menu-board .rmm-plato-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: 10px;
}

.menu-board .rmm-plato-card__top {
	display: block;
}

.menu-board .rmm-plato-card__title {
	font-size: 1rem;
	line-height: 1.2;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
}

.menu-board .rmm-plato-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	font-size: 0.92rem;
	line-height: 1.4;
	color: var(--color-muted);
}

.menu-board .rmm-plato-card__allergens,
.menu-board .rmm-alergenos {
	gap: 0.25rem;
}

.menu-board .rmm-plato-card__link,
.menu-board .rmm-plato-link {
	display: inline-flex;
	align-items: center;
	gap: 0.28rem;
	margin-left: auto;
	color: #8b5000;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.menu-board .rmm-plato-card__link-arrow {
	display: inline-block;
	transition: transform 0.2s ease;
}

.menu-board .rmm-plato-card__link:hover,
.menu-board .rmm-plato-card__link:focus-visible,
.menu-board .rmm-plato-link:hover,
.menu-board .rmm-plato-link:focus-visible {
	color: #ff9800;
}

.menu-board .rmm-plato-card__link:hover .rmm-plato-card__link-arrow,
.menu-board .rmm-plato-card__link:focus-visible .rmm-plato-card__link-arrow,
.menu-board .rmm-plato-link:hover .rmm-plato-card__link-arrow,
.menu-board .rmm-plato-link:focus-visible .rmm-plato-card__link-arrow {
	transform: translateX(4px);
}

.menu-board .rmm-plato-card__price {
	font-size: 1rem;
	font-weight: 800;
	text-align: left;
	color: #9a5b20;
	white-space: nowrap;
}

.check-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.check-list li {
	padding: 0.55rem 0.9rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(68, 42, 34, 0.1);
	font-size: 0.92rem;
	color: var(--color-primary);
}

.check-list li::before {
	display: none;
}

.daily-menu-page {
	background:
		linear-gradient(180deg, rgba(255, 152, 0, 0.08), rgba(249, 249, 249, 0) 22rem),
		var(--color-bg);
}

.daily-menu-page__heading {
	margin-bottom: 1.4rem;
}

.daily-menu-page__heading h1 {
	font-family: "Literata", Georgia, serif;
	font-size: clamp(2.6rem, 6vw, 5rem);
	line-height: 0.98;
	color: var(--color-primary);
}

.daily-menu-page__notes {
	margin-bottom: 1.2rem;
}

.daily-menu-page__board {
	margin-top: 1rem;
}

.section--story {
	padding-top: 2rem;
}

.story-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 3rem;
	align-items: center;
}

.story-grid__media {
	min-height: 32rem;
}

.story-grid__photo {
	width: 100%;
	height: 100%;
	min-height: 32rem;
	border-radius: calc(var(--radius-xl) + 0.25rem);
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12)),
		url("../img/arroz_horno_buen_comer_nules.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: var(--shadow-strong);
}

.story-grid__note {
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--color-border);
	font-size: 0.95rem;
	color: var(--color-muted);
}

.specialty-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	padding: 0;
	min-height: 100%;
	border: 0;
	box-shadow: none;
	background: transparent;
}

.specialty-card--featured {
	transform: none;
}

.specialty-card__media {
	min-height: 20rem;
	margin: 0 0 1.5rem;
	border-radius: calc(var(--radius-xl) + 0.25rem);
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.2)),
		linear-gradient(135deg, rgba(255, 152, 0, 0.28), transparent 42%),
		linear-gradient(160deg, #ceb08d, #8c6239 44%, #4e3326);
	box-shadow: var(--shadow-soft);
}

.specialty-card__media--paella {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
		linear-gradient(135deg, rgba(255, 152, 0, 0.34), transparent 38%),
		url("../img/paella.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.specialty-card__media--oven {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
		linear-gradient(135deg, rgba(255, 152, 0, 0.26), transparent 38%),
		url("../img/arroz-horno.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.specialty-card__media--roast {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18)),
		linear-gradient(135deg, rgba(255, 152, 0, 0.24), transparent 38%),
		url("../img/pollo-asado.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.service-card {
	position: relative;
	padding: 1rem 1.25rem 1rem 0;
	border: 0;
	box-shadow: none;
	background: transparent;
}

.service-card::before {
	content: "";
	position: absolute;
	top: 0.5rem;
	left: -1.2rem;
	width: 0.45rem;
	height: 2.5rem;
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(255, 152, 0, 0.7), rgba(255, 152, 0, 0.12));
}

.contact-showcase {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 0;
	padding: 1.25rem;
	border: 1px solid rgba(93, 64, 55, 0.08);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 30px 70px rgba(68, 42, 34, 0.08);
}

.contact-showcase__map {
	overflow: hidden;
	border-radius: calc(var(--radius-lg) + 0.25rem);
	background: var(--color-surface);
	min-height: 20rem;
}

.contact-map {
	width: 100%;
	height: 100%;
	min-height: 20rem;
	border: 0;
}

.contact-showcase__details {
	display: grid;
	align-content: center;
	padding: 1.25rem 1.5rem;
	background: rgba(255, 255, 255, 0.58);
}

.contact-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1.2rem 0;
	border-bottom: 1px solid var(--color-border);
}

.contact-item:last-child {
	border-bottom: 0;
}

.contact-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 999px;
	background: rgba(255, 152, 0, 0.12);
	color: var(--color-secondary-deep);
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1;
}

.contact-item__icon--location {
	font-size: 1.3rem;
}

.contact-item h3 {
	margin: 0 0 0.35rem;
	font-family: "Literata", Georgia, serif;
	font-size: 1.7rem;
	line-height: 1.05;
	color: var(--color-secondary-deep);
}

.contact-item p {
	margin: 0;
	color: var(--color-muted);
}

.contact-item a {
	color: inherit;
}

.reviews-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card__top {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.review-card__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	background: var(--color-primary-soft);
	color: var(--color-primary);
	font-weight: 800;
}

.review-card__top h3 {
	margin: 0;
	font-size: 1rem;
}

.review-card__date {
	margin: 0.2rem 0 0;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.review-card__stars {
	margin: 0 0 0.75rem;
	color: rgba(255, 152, 0, 0.82);
	letter-spacing: 0.1em;
}

.review-card {
	padding-top: 1rem;
	border-top: 1px solid var(--color-border);
}

.site-footer {
	padding: 4rem 0 1.5rem;
	background: var(--color-primary);
	color: rgba(255, 255, 255, 0.8);
}

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

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.2fr) minmax(150px, 0.7fr) minmax(180px, 0.85fr) minmax(210px, 0.9fr);
	gap: 1.5rem;
}

.site-footer__brand {
	display: grid;
	justify-items: center;
	max-width: 24rem;
	text-align: center;
}

.site-footer__title {
	margin: 0 0 1rem;
	color: var(--color-surface);
	font-size: 1rem;
	font-weight: 800;
}

.site-footer__column {
	margin: 0;
}

.site-footer__column summary {
	cursor: default;
	list-style: none;
	pointer-events: none;
}

.site-footer__column summary::-webkit-details-marker {
	display: none;
}

.site-footer__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: min(9.2rem, 100%);
	margin-bottom: 0.8rem;
	border-radius: 0.75rem;
	overflow: hidden;
}

.site-footer__logo img {
	width: 100%;
	max-height: 3.65rem;
	border-radius: inherit;
	object-fit: contain;
	aspect-ratio: 319 / 160;
}

.site-footer__tagline {
	max-width: 22rem;
	margin: 0;
	color: var(--color-surface);
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.55;
}

.site-footer__nav-column {
	justify-self: center;
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.55rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
}

.site-footer__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.1rem;
	height: 1.1rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1rem;
	line-height: 1;
}

.site-footer__follow {
	display: grid;
	justify-items: start;
	gap: 0.4rem;
}

.site-footer__follow-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	min-height: 2.35rem;
	padding: 0;
	color: var(--color-surface);
	font-weight: 800;
	line-height: 1;
}

.site-footer__follow-link:hover,
.site-footer__follow-link:focus-visible {
	color: var(--color-surface);
}

.site-footer__follow-link img {
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 0.45rem;
	object-fit: contain;
}

.site-footer__contact {
	display: grid;
	gap: 1rem;
}

.site-footer__contact p {
	margin: 0;
}

.site-footer .menu {
	display: grid;
	justify-content: start;
	gap: 0.75rem;
}

.site-footer__bottom {
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.95rem;
}

.site-footer__bottom a {
	color: inherit;
	text-decoration: none;
	font-weight: 700;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
	color: inherit;
}

.entry-header h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	font-family: "Literata", Georgia, serif;
	color: var(--color-primary);
}

.entry-header h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(2.1rem, 4vw, 3.8rem);
	line-height: 1.05;
}

.entry-meta,
.breadcrumbs {
	color: var(--color-muted);
	font-size: 0.95rem;
}

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

.entry-thumbnail {
	margin: 1.5rem 0;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.breadcrumbs {
	margin-bottom: 1.5rem;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 0.5rem;
	opacity: 0.5;
}

.post-card {
	overflow: hidden;
}

.post-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, rgba(255, 152, 0, 0.18), rgba(68, 42, 34, 0.14));
}

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

.post-card__content {
	padding: 1.25rem;
}

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

.post-card h2 {
	margin: 0 0 0.75rem;
	font-size: 1.35rem;
	line-height: 1.15;
	color: var(--color-primary);
}

.pagination {
	margin-top: 2rem;
}

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

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0.25rem 0.65rem;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: var(--color-surface);
}

.page-numbers.current {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-primary);
}

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

@media (max-width: 1100px) {
	.site-header__inner {
		grid-template-columns: auto auto;
	}

	.main-navigation {
		grid-column: 1 / -1;
		justify-content: center;
	}

	.site-header__actions {
		justify-self: end;
	}

	.story-grid,
	.contact-showcase,
	.steps-grid,
	.services-grid,
	.reviews-grid,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.section--process .section-heading {
		max-width: 34rem;
	}

	.section--process .steps-grid {
		max-width: 34rem;
		margin-inline: auto;
		gap: 1rem;
	}

	.section--process .step-card {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		column-gap: 1rem;
		padding: 1rem 1.1rem;
		border: 1px solid rgba(68, 42, 34, 0.08);
		border-radius: var(--radius-md);
		background: rgba(255, 255, 255, 0.35);
	}

	.section--process .step-card__number {
		grid-row: 1 / span 2;
		margin-bottom: 0;
	}

	.section--process .step-card h3 {
		margin-bottom: 0.45rem;
	}

	.specialties-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.4rem;
	}

	.specialty-card__media {
		min-height: 12rem;
		margin-bottom: 1rem;
	}

	.services-grid {
		max-width: 36rem;
		margin-inline: auto;
		padding-inline: 1.25rem;
	}

	.service-card {
		padding-left: 1.35rem;
	}

	.service-card::before {
		left: 0;
	}

	.site-footer__follow {
		justify-items: start;
	}

	.menu-feature {
		display: block;
	}
}

@media (max-width: 1100px) {
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.25rem 2.5rem;
		justify-items: center;
		max-width: 36rem;
		margin-inline: auto;
		text-align: center;
	}

	.site-footer__brand {
		justify-self: center;
	}

	.site-footer__nav-column {
		justify-self: center;
	}

	.site-footer__column summary {
		pointer-events: none;
	}

	.site-footer__nav-column .menu {
		justify-content: center;
		justify-items: center;
		text-align: center;
	}

	.site-footer__grid > div {
		width: min(100%, 16rem);
	}

	.site-footer__brand {
		width: min(100%, 24rem);
	}

	.site-footer__follow,
	.site-footer .menu {
		justify-items: center;
	}

	.site-footer .menu {
		text-align: center;
	}
}

@media (max-width: 960px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.site-header__inner {
		grid-template-columns: auto auto;
	}

	.site-header__actions {
		display: none;
	}

	.mobile-call-button {
		position: fixed;
		right: 1rem;
		bottom: 1rem;
		z-index: 50;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 3.5rem;
		height: 3.5rem;
		padding: 0;
		border: 2px solid rgba(255, 255, 255, 0.9);
		border-radius: 50%;
		background: var(--color-secondary);
		color: var(--color-surface);
		box-shadow: 0 8px 24px rgba(68, 42, 34, 0.3);
		line-height: 1;
	}

	.mobile-call-button:hover,
	.mobile-call-button:focus-visible {
		background: var(--color-secondary-deep);
		color: var(--color-surface);
		transform: translateY(-1px);
	}

	.mobile-call-button__icon {
		font-size: 1.4rem;
		line-height: 1;
	}

	.main-navigation {
		position: absolute;
		top: calc(100% + 0.5rem);
		right: 1rem;
		left: 1rem;
		display: none;
		padding: 1rem;
		background: rgba(68, 42, 34, 0.96);
		border: 1px solid rgba(255, 255, 255, 0.08);
		border-radius: var(--radius-lg);
		box-shadow: var(--shadow-soft);
	}

	.main-navigation.is-open {
		display: block;
	}

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

	.menu a {
		color: var(--color-surface);
	}

	.menu-toggle {
		display: inline-flex;
		justify-self: end;
	}

	#menu-diario {
		padding-inline: 20px;
	}

	#menu-diario .section-heading h2 {
		font-size: clamp(2rem, 9vw, 3rem);
		max-width: none;
	}

	.menu-feature {
		display: block;
	}

	.menu-feature__intro {
		max-width: none;
		margin-bottom: 1.5rem;
	}

	.menu-board {
		padding: 0;
	}

	.menu-board .rmm-menu-diario {
		padding: 40px 20px;
	}

	.menu-board .rmm-platos-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.menu-board .rmm-plato-card {
		grid-template-columns: 84px minmax(0, 1fr);
		gap: 14px;
	}

	.menu-board .rmm-plato-card__image,
	.menu-board .rmm-plato-card__image img {
		width: 84px;
		height: 72px;
		max-height: 72px;
	}

	.menu-board .rmm-plato-card__price {
		font-size: 0.95rem;
	}

	.hero {
		padding-top: 2.5rem;
	}

	.hero__panel {
		min-height: auto;
		padding: 3rem 2rem;
		border-radius: 1.5rem;
	}

	.hero__inner {
		min-height: 0;
	}

	.hero__brand-mark {
		min-width: 12.5rem;
		max-width: 12.5rem;
		padding: 1rem 1.15rem;
	}

	.contact-showcase {
		padding: 1rem;
	}
}

@media (max-width: 640px) {
	html {
		scroll-padding-top: 5rem;
	}

	body {
		min-width: 0;
	}

	.container {
		width: min(calc(100% - 1.25rem), var(--container));
		max-width: calc(100vw - 1.25rem);
	}

	.section {
		padding: 3.5rem 0;
	}

	.section-heading {
		margin-bottom: 2rem;
	}

	.section-heading h1,
	.section-heading h2,
	.not-found h1 {
		font-size: clamp(2rem, 11vw, 2.9rem);
		line-height: 1.06;
	}

	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0.75rem;
		min-height: 4.7rem;
	}

	.site-logo img {
		max-width: 9.5rem;
		max-height: 48px;
	}

	.menu-toggle {
		padding: 0.65rem 0.85rem;
		white-space: nowrap;
	}

	.main-navigation {
		right: 0.625rem;
		left: 0.625rem;
		max-width: calc(100vw - 1.25rem);
	}

	.site-description {
		display: none;
	}

	.hero {
		padding: 1.25rem 0 3.5rem;
	}

	.hero__content h1 {
		font-size: clamp(2.9rem, 15vw, 4.2rem);
	}

	.hero__panel {
		padding: 1.35rem;
		border-radius: 1.35rem;
	}

	.hero__frame {
		inset: 0.7rem;
		border-radius: 1rem;
	}

	.hero__brand-mark {
		min-width: 11rem;
		max-width: 11rem;
		margin-bottom: 1.1rem;
	}

	.hero__lead {
		font-size: 1rem;
		line-height: 1.7;
	}

	.hero__meta {
		display: grid;
		gap: 0.6rem;
	}

	.hero__meta li {
		width: 100%;
	}

	#menu-diario {
		padding-inline: 0;
	}

	#menu-diario .section-heading h2 {
		font-size: clamp(2rem, 10vw, 2.7rem);
	}

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

	.specialty-card__media {
		min-height: 15rem;
	}

	.menu-board .rmm-menu-diario {
		padding: 24px 0;
	}

	.menu-board .rmm-platos-grid {
		grid-template-columns: 1fr;
	}

	.menu-board .rmm-plato-card {
		grid-template-columns: 1fr;
		gap: 0.9rem;
		padding: 14px;
	}

	.menu-board .rmm-plato-card__image,
	.menu-board .rmm-plato-card__image img {
		width: 100%;
		height: auto;
		max-height: none;
		aspect-ratio: 16 / 9;
	}

	.menu-board .rmm-plato-card__image {
		overflow: hidden;
		border-radius: 16px;
	}

	.menu-board .rmm-plato-card__image img {
		object-fit: cover;
		border-radius: 16px;
	}

	.menu-board .rmm-plato-card__price {
		grid-column: auto;
		justify-self: start;
		text-align: left;
	}

	.menu-board .rmm-plato-card__footer,
	.menu-board .rmm-plato-footer {
		align-items: center;
		flex-direction: row;
		gap: 0.65rem;
		justify-content: space-between;
		width: 100%;
	}

	.menu-board .rmm-plato-card__link,
	.menu-board .rmm-plato-link {
		align-self: flex-end;
		justify-self: end;
		margin-left: auto;
		max-width: 100%;
		white-space: nowrap;
	}

	.check-list {
		display: grid;
		grid-template-columns: 1fr;
		width: 100%;
	}

	.check-list li {
		text-align: center;
	}

	.step-card,
	.service-card,
	.review-card {
		min-width: 0;
	}

	.section--process .step-card {
		padding: 0.95rem;
		column-gap: 0.85rem;
	}

	.service-card {
		padding-right: 0;
		padding-left: 0.9rem;
	}

	.service-card::before {
		left: 0;
	}

	.contact-showcase,
	.contact-showcase__details {
		padding: 0.85rem;
	}

	.contact-item {
		grid-template-columns: 1fr;
		gap: 0.65rem;
	}

	.site-footer__brand {
		max-width: none;
		margin-inline: auto;
	}

	.site-footer__social {
		display: grid;
		grid-template-columns: 1fr 1fr;
		width: min(100%, 18rem);
	}

	.site-footer__social a {
		justify-content: center;
		padding-inline: 0.75rem;
		white-space: nowrap;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		max-width: 24rem;
		text-align: center;
	}

	.site-footer__nav-column {
		justify-self: center;
	}

	.site-footer__column {
		width: 100%;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		padding: 0.85rem 0.85rem 0;
		text-align: left;
	}

	.site-footer__column summary {
		position: relative;
		cursor: pointer;
		pointer-events: auto;
		padding-right: 2.4rem;
	}

	.site-footer__column summary::after {
		content: "+";
		position: absolute;
		top: 50%;
		right: 0.2rem;
		transform: translateY(-50%);
		font-size: 1.45rem;
		font-weight: 700;
		line-height: 1;
	}

	.site-footer__column[open] summary::after {
		content: "−";
	}

	.site-footer__column > :not(summary) {
		margin-top: 0.65rem;
	}

	.site-footer__follow,
	.site-footer .menu {
		justify-items: start;
	}

	.site-footer__logo {
		width: 8rem;
	}

}

@media (max-width: 380px) {
	.site-logo img {
		max-width: 8.25rem;
	}

	.hero__panel {
		padding: 1rem;
	}

	.hero__brand-mark {
		min-width: 9.5rem;
		max-width: 9.5rem;
		padding: 0.85rem 1rem;
	}

	.menu-board .rmm-plato-card {
		grid-template-columns: 1fr;
	}

	.menu-board .rmm-plato-card__image,
	.menu-board .rmm-plato-card__image img {
		aspect-ratio: 4 / 3;
	}

	.menu-board .rmm-plato-card__price {
		grid-column: auto;
	}
}

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

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