:root {
	--forest: #0a3323;
	--forest-dark: #072419;
	--olive: #839958;
	--olive-dark: #839958;
	--cream: #f7F4D5;
	--paper: #ECE2C6;
	--rose: #e6b7b0;
	--rose-dark: #d99a90;
	--gold: #C9A24B;
	--petrol: #105666;
	--ink: #1A1A1A;
	--display: "Bagel Fat One", "Kavoon", cursive;
	--serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--sans: Arial, Helvetica, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	padding-top: 76px;
	color: var(--ink);
	background: var(--forest-dark);
	font-family: var(--sans);
	line-height: 1.6;
}

.container {
	width: min(1120px, calc(100% - 2rem));
	margin: auto;
}

.section {
	position: relative;
	padding: 5rem 0;
	scroll-margin-top: 76px;
}

.screen-reader-text,
.skip-link:not(:focus) {
	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:focus {
	position: fixed;
	z-index: 100;
	padding: 1rem;
	color: #fff;
	background: var(--forest);
}

/* Divisor de cruces bordado */
.cross-divider {
	height: 100px;
	background-image: url("../images/patron-cruces.svg");
	background-repeat: repeat-x;
	background-position: center;
	background-size: 60px;
}

.cross-divider--dark {
	color: var(--forest);
	background-color: var(--cream);
}

.cross-divider--light {
	color: var(--rose);
	background-color: var(--forest);
}

/* Cabecera */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	color: #fff;
	background: rgba(22, 32, 25, .92);
	backdrop-filter: blur(6px);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .15);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 120px;
}

.brand {
	color: inherit;
	font-family: var(--serif);
	font-size: 1.45rem;
	font-weight: bold;
	letter-spacing: .04em;
	text-decoration: none;
}

.brand span {
	color: var(--rose);
	font-size: .8em;
}

.brand-logo {
	display: inline-flex;
	align-items: center;
	height: 58px;
}

.brand-logo img {
	display: block;
	width: auto;
	max-width: 180px;
	max-height: 58px;
	object-fit: contain;
}

.primary-navigation ul {
	display: flex;
	gap: 1.5rem;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-navigation a {
	position: relative;
	padding-bottom: .2rem;
	color: inherit;
	text-decoration: none;
}

.primary-navigation a:hover {
	color: var(--rose);
}

.menu-toggle {
	display: none;
	color: #fff;
	background: none;
	border: 0;
}

/* Hero */
.hero {
	position: relative;
	display: grid;
	align-items: center;
	min-height: 680px;
	overflow: hidden;
	color: #fff;
	background: linear-gradient(125deg, var(--forest-dark), var(--forest) 55%, var(--olive-dark));
}

.hero::before {
	position: absolute;
	inset: -20%;
	z-index: 0;
	content: "";
	opacity: .25;
	background:
		radial-gradient(circle at 75% 30%, var(--olive), transparent 26%),
		radial-gradient(circle at 20% 90%, var(--rose), transparent 18%);
}

.hero-watermark {
	position: absolute;
	top: 50%;
	right: -10%;
	z-index: 2;
	width: 45%;
	max-width: 620px;
	height: auto;
	opacity: .08;
	pointer-events: none;
	transform: translateY(-50%);
	animation: flower-drift 26s ease-in-out infinite;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(0, 0, 0, .42), transparent);
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.eyebrow {
	margin: 0 0 .65rem;
	color: var(--gold);
	font-size: .8rem;
	font-weight: bold;
	letter-spacing: .14em;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	font-family: var(--serif);
	line-height: 1.12;
}

h1 {
	margin: 0;
	font-size: clamp(2.4rem, 6vw, 4.6rem);
}

h2 {
	margin: .1em 0 .45em;
	font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h3 {
	margin: 0;
	font-size: 1.45rem;
}

/* Slider de fondos del hero */
.hero-bg-slider {
	position: absolute;
	inset: 0;
	z-index: 0;
	min-height: 0;
	overflow: hidden;
}

.hero-bg-slider .hero-slider-track {
	height: 100%;
}

.hero-bg-slide {
	position: absolute !important;
	inset: 0;
	visibility: hidden;
	opacity: 0;
	background-position: center;
	background-size: cover;
	transition: opacity 1.2s ease, visibility 1.2s;
}

.hero-bg-slide.is-active {
	visibility: visible;
	opacity: 1;
}

/* Slider de mensajes del hero */
.hero-text-slider {
	position: relative;
	min-height: clamp(220px, 32vw, 300px);
	overflow: hidden;
}

.hero-slider-track {
	position: relative;
	height: 100%;
}

.hero-slide {
	position: absolute;
	inset: 0;
	visibility: hidden;
	opacity: 0;
	transform: translateY(14px);
	transition: opacity .6s ease, transform .6s ease, visibility .6s;
}

.hero-slide.is-active {
	position: relative;
	visibility: visible;
	opacity: 1;
	transform: none;
}

.hero-text-slider .hero-slide .eyebrow {
	opacity: 0;
	animation: fade-slide-up .8s ease .1s forwards;
}

.hero-text-slider .hero-slide h1 {
	opacity: 0;
	animation: fade-slide-up .9s ease .28s forwards;
}

.hero-slider-dots {
	display: flex;
	gap: .55rem;
	margin-top: 1.5rem;
}

.hero-slider-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	cursor: pointer;
	background: transparent;
	border: 2px solid var(--cream);
	border-radius: 50%;
	transition: background .2s, transform .2s;
}

.hero-slider-dot.is-active {
	background: var(--rose);
	border-color: var(--rose);
	transform: scale(1.2);
}

.section-title {
	color: var(--forest);
	font-family: var(--display);
	font-display: swap;
	text-transform: uppercase;
}

.hero .section-title,
.events-section .section-title {
	color: var(--cream);
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
	opacity: 0;
	animation: fade-slide-up 1s ease .48s forwards;
}

.button {
	display: inline-block;
	padding: .85rem 1.4rem;
	font-weight: bold;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: 2px;
	transition: transform .2s, background .2s, color .2s;
}

.button:hover {
	transform: translateY(-3px);
}

.button-primary {
	color: var(--forest-dark);
	background: var(--rose);
	border-color: var(--rose);
}

.button-primary:hover {
	background: var(--rose-dark);
	border-color: var(--rose-dark);
}

.button-outline {
	color: #fff;
	border-color: var(--cream);
}

.button-outline:hover {
	background: rgba(244, 236, 216, .12);
}

@keyframes fade-slide-up {
	from {
		opacity: 0;
		transform: translateY(22px);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

@keyframes flower-drift {
	0%,
	100% {
		transform: translateY(-50%) rotate(0deg);
	}

	50% {
		transform: translateY(-52%) rotate(4deg);
	}
}

/* Historia */
.story-section {
	position: relative;
	overflow: hidden;
	background: var(--paper);
}

.story-grid {
	position: relative;
	display: grid;
	gap: 2.5rem;
	align-items: center;
}

.story-copy p {
	max-width: 62ch;
}

.story-copy-wrap {
	position: relative;
	margin-bottom: 1.25rem;
}

.story-copy {
	position: relative;
	overflow: hidden;
	transition: max-height .5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-copy.is-collapsed {
	max-height: 105px !important;
}

.story-copy.is-collapsed::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3.5em;
	content: "";
	background: linear-gradient(180deg, rgba(236, 226, 198, 0) 0%, var(--paper) 80%);
	pointer-events: none;
}

.story-copy.is-expanded {
	max-height: 2500px !important;
}

.story-copy.is-expanded::after {
	display: none !important;
}

.story-copy-toggle {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	padding: 0;
	margin-top: .85rem;
	color: var(--forest);
	font: inherit;
	font-weight: bold;
	font-size: .95rem;
	letter-spacing: .03em;
	cursor: pointer;
	background: none;
	border: 0;
	transition: color .2s;
}

.story-copy-toggle .story-copy-toggle-icon,
.story-copy-toggle span[aria-hidden="true"] {
	display: inline-block;
	transition: transform .35s ease;
}

.story-copy-toggle:hover {
	color: var(--olive-dark);
}

.story-copy-toggle[aria-expanded="true"] .story-copy-toggle-icon,
.story-copy-toggle[aria-expanded="true"] span[aria-hidden="true"] {
	transform: rotate(180deg);
}

.story-copy-toggle.is-hidden {
	display: none !important;
}

.text-link {
	color: var(--forest);
	font-weight: bold;
	text-decoration: none;
}

.text-link:hover {
	color: var(--olive-dark);
}

/* Slider "La leyenda que florece" */
.story-slider {
	position: relative;
	min-height: 400px;
	overflow: hidden;
	background: var(--forest);
}

.story-slider-track {
	display: flex;
	height: 100%;
	min-height: 400px;
	transition: transform .55s ease;
}

.story-slide {
	display: grid;
	flex: 0 0 100%;
	place-items: center;
	padding: 2rem;
}

.story-slide img {
	display: block;
	width: min(100%, 300px);
	height: auto;
	max-height: 230px;
	object-fit: contain;
}

.story-slider-arrow {
	position: absolute;
	top: 50%;
	width: 38px;
	height: 38px;
	color: var(--cream);
	font-size: 1.4rem;
	line-height: 1;
	cursor: pointer;
	background: rgba(244, 236, 216, .15);
	border: 0;
	border-radius: 50%;
	transform: translateY(-50%);
	transition: background .2s;
}

.story-slider-arrow:hover {
	background: rgba(244, 236, 216, .3);
}

.story-slider-prev {
	left: .75rem;
}

.story-slider-next {
	right: .75rem;
}

.story-slider-dots {
	position: absolute;
	right: 0;
	bottom: .85rem;
	left: 0;
	display: flex;
	justify-content: center;
	gap: .5rem;
}

.story-slider-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	cursor: pointer;
	background: rgba(244, 236, 216, .4);
	border: 0;
	border-radius: 50%;
	transition: background .2s, transform .2s;
}

.story-slider-dot.is-active {
	background: var(--rose);
	transform: scale(1.25);
}

/* Menu */
.menu-section {
	position: relative;
	overflow: hidden;
	background: var(--cream);
}

.menu-section::before {
	position: absolute;
	right: -8%;
	bottom: -10%;
	z-index: 0;
	width: 46vw;
	max-width: 560px;
	aspect-ratio: 1;
	content: "";
	opacity: .05;
	pointer-events: none;
	background-image: url("../images/flor-edelweiss-verde.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.section-heading {
	position: relative;
	z-index: 1;
	max-width: 650px;
	margin-bottom: 2rem;
}

.menu-tabs {
	position: relative;
	z-index: 1;
	display: flex;
	gap: .6rem;
	overflow-x: auto;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
}

.menu-tab {
	flex: 0 0 auto;
	padding: .65rem 1.1rem;
	color: var(--forest);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	background: transparent;
	border: 1px solid var(--olive);
	border-radius: 999px;
	transition: .2s;
}

.menu-tab:hover,
.menu-tab.is-active {
	color: var(--cream);
	background: var(--forest);
	border-color: var(--forest);
}

.menu-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1.2rem;
}

.menu-card {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	background: var(--paper);
	border: 1px solid rgba(31, 48, 37, .08);
	box-shadow: 0 4px 16px rgba(31, 48, 37, .1);
	transition: transform .25s, box-shadow .25s;
}

.menu-card::before {
	position: absolute;
	right: -18%;
	bottom: -18%;
	z-index: 0;
	width: 60%;
	aspect-ratio: 1;
	content: "";
	opacity: .08;
	pointer-events: none;
	background-image: url("../images/flor-edelweiss-verde.png");
	background-repeat: no-repeat;
	background-size: contain;
}

.menu-card:hover {
	box-shadow: 0 12px 28px rgba(31, 48, 37, .2);
	transform: translateY(-6px);
}

.menu-card[hidden] {
	display: none;
}

.menu-card-image {
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.menu-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s;
}

.menu-card:hover img {
	transform: scale(1.06);
}

.menu-card-content {
	position: relative;
	z-index: 1;
	padding: 1.35rem;
}

.menu-card-header {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	justify-content: space-between;
}

.menu-card-header h3 {
	color: var(--forest);
	font-size: 1.1rem;
	font-family: var(--display);
	font-display: swap;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.menu-card p {
	margin: .8rem 0;
	color: #4d4d4d;
	font-size: .94rem;
}

.price {
	flex: 0 0 auto;
	color: var(--petrol);
	font-size: 1.05rem;
	font-weight: bold;
}

.special-label {
	display: inline-block;
	padding: .25rem .55rem;
	color: var(--forest);
	font-size: .75rem;
	font-weight: bold;
	background: var(--rose);
}

/* Eventos */
.events-section {
	position: relative;
	overflow: hidden;
	color: #fff;
	background: var(--forest);
}

.events-section .eyebrow {
	color: var(--gold);
}

.event-grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 1rem;
}

.event-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 200px;
	padding: 1.5rem;
	position: relative;
	overflow: hidden;
	color: #fff;
	text-decoration: none;
	background: linear-gradient(135deg, rgba(139, 147, 91, .85), rgba(31, 48, 37, .92));
	transition: transform .25s;
}

.event-card-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .72;
}

.event-card::after {
	position: absolute;
	inset: 0;
	z-index: 1;
	content: "";
	background: linear-gradient(180deg, rgba(31, 48, 37, .08), rgba(22, 32, 25, .92));
}

.event-card > span,
.event-card > h3 {
	position: relative;
	z-index: 2;
}

.event-card:hover {
	transform: scale(1.02);
}

.event-card-small {
	background: linear-gradient(135deg, var(--olive), var(--olive-dark));
}

.instagram-card {
	background: linear-gradient(135deg, var(--rose-dark), var(--forest));
}

.event-card span {
	color: var(--rose);
	font-size: .78rem;
	font-weight: bold;
	letter-spacing: .1em;
	text-transform: uppercase;
}

/* ==========================================================================
/* ==========================================================================
   Footer Edelweiss (Diseño estructurado y fiel a la identidad de marca)
   ========================================================================== */
.site-footer {
	position: relative;
	padding-top: 4.5rem;
	color: var(--cream);
	background: var(--forest-dark);
	scroll-margin-top: 76px;
}

.footer-grid {
	display: grid;
	gap: 2.5rem;
}

.footer-col-title {
	position: relative;
	color: var(--gold);
	font-size: 0.9rem;
	font-weight: 700;
	font-family: inherit;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 1.35rem 0;
	padding-bottom: 0.55rem;
}

.footer-col-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 32px;
	height: 2px;
	background: var(--gold);
	border-radius: 1px;
}

/* Columna 1: Marca Edelweiss */
.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 0.85rem;
}

.footer-brand .brand {
	color: var(--cream);
	font-family: var(--serif);
	font-size: 1.55rem;
	font-weight: bold;
	letter-spacing: 0.04em;
	text-decoration: none;
	margin: 0;
}

.footer-brand .brand span {
	color: var(--rose);
	font-size: 0.8em;
}

.footer-flower {
	width: 48px;
	height: auto;
	opacity: 0.95;
	flex-shrink: 0;
}

.footer-desc {
	color: rgba(247, 244, 213, 0.82);
	font-size: 0.92rem;
	line-height: 1.65;
	margin: 0;
	max-width: 32ch;
}

/* Columna 2: Navegación */
.footer-nav-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.footer-nav-links a {
	color: rgba(247, 244, 213, 0.85);
	text-decoration: none;
	font-size: 0.92rem;
	transition: color 0.2s ease, transform 0.2s ease;
	display: inline-block;
}

.footer-nav-links a:hover {
	color: var(--gold);
	transform: translateX(4px);
}

/* Columna 3: Horarios */
.footer-schedule-item {
	margin-bottom: 0.75rem;
}

.footer-schedule-label {
	display: block;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--gold);
	text-transform: uppercase;
	margin-bottom: 0.2rem;
}

.footer-schedule-time {
	display: block;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--cream);
}

.footer-highlight-box {
	margin-top: 1.15rem;
	padding: 0.75rem 0.95rem;
	background: rgba(0, 0, 0, 0.25);
	border-left: 3px solid var(--gold);
	border-radius: 4px;
}

.footer-highlight-box p {
	margin: 0;
	font-size: 0.85rem;
	color: rgba(247, 244, 213, 0.9);
	line-height: 1.45;
}

/* Columna 4: Visítanos y Reservas */
.footer-info-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.footer-info-list li {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.92rem;
	color: rgba(247, 244, 213, 0.85);
}

.footer-info-list a {
	color: var(--cream);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.footer-info-list a:hover {
	color: var(--gold);
}

.footer-info-pin {
	color: var(--gold);
	flex-shrink: 0;
	font-size: 1rem;
}

.footer-map-card {
	position: relative;
	height: 130px;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid rgba(247, 244, 213, 0.2);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.footer-map-card iframe {
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* Barra inferior */
.footer-bottom {
	padding: 1.35rem 0;
	margin-top: 3.5rem;
	border-top: 1px solid rgba(247, 244, 213, 0.15);
	color: rgba(247, 244, 213, 0.65);
	font-size: 0.85rem;
}

/* Botones flotantes */
.whatsapp-float,
.back-to-top {
	position: fixed;
	right: 1.25rem;
	z-index: 60;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.whatsapp-float {
	bottom: 1.25rem;
	width: 58px;
	height: 58px;
	color: var(--cream);
	background: var(--forest-dark);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
	transition: transform .2s, box-shadow .2s;
}

.whatsapp-float svg {
	width: 30px;
	height: 30px;
}

.whatsapp-float:hover {
	box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
	transform: scale(1.08);
}

.back-to-top {
	bottom: 5.5rem;
	width: 46px;
	height: 46px;
	color: var(--forest-dark);
	background: var(--rose);
	box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
	visibility: hidden;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}

.back-to-top svg {
	width: 22px;
	height: 22px;
}

.back-to-top.is-visible {
	visibility: visible;
	opacity: 1;
	transform: none;
}

.back-to-top:hover {
	background: var(--rose-dark);
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.hero-slide .eyebrow,
	.hero-slide h1,
	.hero-actions,
	.hero-watermark {
		opacity: 1;
		animation: none;
	}

	.hero-slide,
	.reveal {
		transition: none;
	}
}

@media (min-width: 700px) {
	.story-grid {
		grid-template-columns: .8fr 1.2fr;
	}

	.menu-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.event-grid {
		grid-template-columns: 2fr 1fr;
	}

	.event-card-large {
		grid-row: span 2;
		min-height: 416px;
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1000px) {
	.menu-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid {
		grid-template-columns: 1.25fr 0.95fr 1.05fr 1.25fr;
		gap: 2.75rem;
		align-items: start;
	}
}

@media (max-width: 699px) {
	.menu-toggle {
		display: flex;
		flex-direction: column;
		gap: 5px;
		padding: .5rem;
	}

	.menu-toggle span:not(.screen-reader-text) {
		display: block;
		width: 24px;
		height: 2px;
		background: currentColor;
	}

	.primary-navigation {
		position: absolute;
		top: 66px;
		right: 1rem;
		left: 1rem;
		padding: 1rem;
		visibility: hidden;
		opacity: 0;
		background: var(--forest);
		transform: translateY(-12px);
		transition: .2s;
	}

	.primary-navigation.is-open {
		visibility: visible;
		opacity: 1;
		transform: none;
	}

	.primary-navigation ul {
		flex-direction: column;
		gap: .7rem;
	}

	.hero {
		min-height: 600px;
	}

	.hero h1 {
		font-size: clamp(2rem, 9vw, 2.6rem);
		line-height: 1.2;
	}

	.hero-watermark {
		width: 70%;
		opacity: .06;
	}

	.brand-logo {
		height: 50px;
	}

	.brand-logo img {
		max-width: 145px;
		max-height: 50px;
	}

	.whatsapp-float {
		right: 1rem;
		bottom: 1rem;
		width: 52px;
		height: 52px;
	}

	.whatsapp-float svg {
		width: 26px;
		height: 26px;
	}

	.back-to-top {
		right: 1rem;
		bottom: 4.75rem;
		width: 40px;
		height: 40px;
	}

	.back-to-top svg {
		width: 18px;
		height: 18px;
	}

	body {
		padding-top: 66px;
	}
}

/* ==========================================================================
   Sección: Las recomendaciones del chef Alvaro
   ========================================================================== */
.chef-section {
	position: relative;
	background: #fdfaf4;
	border-top: 1px solid rgba(197, 155, 39, 0.22);
	border-bottom: 1px solid rgba(197, 155, 39, 0.22);
	padding: 5rem 0;
}

.chef-section .section-heading {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 3rem auto;
}

.chef-section .eyebrow {
	color: var(--gold);
}

.chef-section-title {
	display: inline-block;
	text-align: center;
	line-height: 1.25;
	vertical-align: middle;
}

.chef-title-icon {
	display: inline-block;
	height: 1.2em;
	width: auto;
	max-width: 1.6em;
	object-fit: contain;
	vertical-align: middle;
	margin-right: 0.35em;
	margin-top: -0.12em;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
	transition: transform 0.35s ease;
}

.chef-section-title:hover .chef-title-icon {
	transform: rotate(-10deg) scale(1.08);
}

.chef-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	gap: 2rem;
}

.chef-card {
	background: #ffffff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(31, 48, 37, 0.07);
	border: 1px solid #e9e3d6;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chef-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(31, 48, 37, 0.12);
}

.chef-card-img-wrap {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: #1e3a2b;
}

.chef-card-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.chef-card:hover .chef-card-img-wrap img {
	transform: scale(1.05);
}

.chef-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	background: #c59b27;
	color: #1e3a2b;
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.chef-card-body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.chef-card-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	margin-bottom: 0.75rem;
}

.chef-card-header h3 {
	margin: 0;
	font-size: 1.25rem;
	font-family: var(--display);
	color: #1e3a2b;
}

.chef-price {
	font-weight: 700;
	color: #8b935b;
	font-size: 1.15rem;
	white-space: nowrap;
}

.chef-card-desc {
	color: #4a554e;
	font-size: 0.92rem;
	line-height: 1.55;
	margin: 0 0 1.25rem 0;
	flex: 1;
}

.chef-card-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #1e3a2b;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	transition: color 0.2s, transform 0.2s;
	margin-top: auto;
}

.chef-card-btn:hover {
	color: #c59b27;
	transform: translateX(4px);
}

/* ==========================================================================
   Popup Promocional
   ========================================================================== */
#edelweiss-promo-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

#edelweiss-promo-modal.is-visible {
	opacity: 1;
	visibility: visible;
}

.promo-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(14, 24, 18, 0.74);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.promo-modal-card {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 540px;
	max-height: 90vh;
	overflow-y: auto;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
	border: 2px solid #c59b27;
	transform: scale(0.92) translateY(20px);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#edelweiss-promo-modal.is-visible .promo-modal-card {
	transform: scale(1) translateY(0);
}

.promo-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 10;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(30, 58, 43, 0.85);
	color: #ffffff;
	border: none;
	font-size: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.2s;
	line-height: 1;
}

.promo-modal-close:hover {
	background: #14281e;
	transform: scale(1.1);
}

.promo-modal-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	border-bottom: 2px solid rgba(197, 155, 39, 0.3);
}

.promo-modal-body {
	padding: 1.75rem;
	text-align: center;
}

.promo-modal-badge {
	display: inline-block;
	background: #c59b27;
	color: #1e3a2b;
	font-weight: 800;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 20px;
	margin-bottom: 0.75rem;
}

.promo-modal-title {
	font-family: var(--display);
	font-size: 1.55rem;
	color: #1e3a2b;
	margin: 0 0 0.5rem 0;
	line-height: 1.25;
}

.promo-modal-price {
	font-size: 1.35rem;
	font-weight: 800;
	color: #8b935b;
	margin: 0 0 1rem 0;
}

.promo-modal-desc {
	color: #4a554e;
	font-size: 0.95rem;
	line-height: 1.55;
	margin: 0 0 1.5rem 0;
}

.promo-modal-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 320px;
	background: #1e3a2b;
	color: #ffffff;
	padding: 12px 24px;
	border-radius: 30px;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(30, 58, 43, 0.25);
	transition: background 0.2s, transform 0.2s;
}

.promo-modal-btn:hover {
	background: #14281e;
	transform: translateY(-2px);
	color: #ffffff;
}
