/* Dolce Sampatti — Heritage Gastronomy (mockup) */

@font-face {
	font-family: "Edwardian Script ITC";
	src: url("../fonts/edwardian-script-itc.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	--ds-surface: #16130e;
	--ds-surface-dim: #16130e;
	--ds-surface-bright: #3d3933;
	--ds-surface-lowest: #110e09;
	--ds-surface-low: #1e1b16;
	--ds-surface-container: #231f1a;
	--ds-surface-high: #2d2924;
	--ds-surface-highest: #38342e;
	--ds-on-surface: #e9e1d8;
	--ds-on-variant: #d1c5b4;
	--ds-outline: #9a8f80;
	--ds-outline-variant: #4e4639;
	--ds-primary: #e9c176;
	--ds-on-primary: #412d00;
	--ds-primary-container: #c5a059;
	--ds-background: #16130e;
	--ds-on-background: #e9e1d8;
	--ds-error: #ffb4ab;
	--ds-container: 1200px;
	--ds-gutter: 24px;
	--ds-margin: 16px;
	--ds-header: 80px;
	--ds-radius: 4px;
	--ds-radius-lg: 8px;
	--ds-font-headline: "Playfair Display", Georgia, "Times New Roman", serif;
	--ds-font-body: "Work Sans", system-ui, -apple-system, sans-serif;
	--ds-font-script: "Edwardian Script ITC", "Great Vibes", cursive;
	--ds-shadow-header: 0 4px 20px rgba(0, 0, 0, 0.4);
	--ds-shadow-warm: 0 18px 40px rgba(42, 26, 10, 0.45);
}

@media (min-width: 960px) {
	:root {
		--ds-margin: 48px;
	}
}

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

html {
	scroll-behavior: smooth;
}

html,
body {
	margin: 0;
	padding: 0;
}

body.ds-theme {
	background: var(--ds-background);
	color: var(--ds-on-background);
	font-family: var(--ds-font-body);
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
}

body.ds-theme::before {
	content: "";
	pointer-events: none;
	position: fixed;
	inset: 0;
	z-index: 80;
	opacity: 0.045;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

a:hover {
	color: var(--ds-primary);
}

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

h1,
h2,
h3,
h4 {
	font-family: var(--ds-font-headline);
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

p {
	margin: 0;
}

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

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.ds-skip {
	position: absolute;
	left: 16px;
	top: -80px;
	z-index: 100;
	background: var(--ds-primary);
	color: var(--ds-on-primary);
	padding: 8px 16px;
	border-radius: var(--ds-radius);
}

.ds-skip:focus {
	top: 16px;
}

.ds-container {
	width: 100%;
	max-width: calc(var(--ds-container) + var(--ds-margin) * 2);
	margin: 0 auto;
	padding: 0 var(--ds-margin);
}

.ds-container--narrow {
	max-width: 780px;
}

.ds-label {
	font-family: var(--ds-font-body);
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ds-primary);
	margin: 0;
}

.ds-divider {
	width: 64px;
	height: 1px;
	background: var(--ds-primary);
	margin: 8px auto 0;
}

.ds-section-head {
	text-align: center;
	margin-bottom: 48px;
}

.ds-section-title {
	font-size: 28px;
	line-height: 36px;
	color: var(--ds-on-surface);
	font-weight: 700;
}

@media (min-width: 768px) {
	.ds-section-title {
		font-size: 32px;
		line-height: 40px;
	}
}

.ds-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	cursor: pointer;
	border-radius: var(--ds-radius-lg);
	padding: 10px 24px;
	font-family: var(--ds-font-body);
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.ds-btn--primary {
	background: linear-gradient(180deg, #e9c176 0%, #c5a059 100%);
	color: var(--ds-on-primary);
	box-shadow: 0 4px 20px rgba(233, 193, 118, 0.2);
}

.ds-btn--primary:hover {
	background: var(--ds-primary-container);
	color: var(--ds-on-primary);
}

.ds-btn--ghost {
	background: transparent;
	border: 1px solid var(--ds-primary);
	color: var(--ds-primary);
	border-radius: 2px;
}

.ds-btn--ghost:hover {
	background: rgba(233, 193, 118, 0.1);
	color: var(--ds-primary);
}

.ds-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--ds-font-body);
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ds-primary);
	text-align: left;
}

.ds-text-link svg {
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.ds-text-link:hover {
	color: #ffdea5;
}

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

.ds-wordmark {
	font-family: var(--ds-font-script);
	font-size: 36px;
	line-height: 1;
	color: var(--ds-primary);
	font-weight: 400;
	white-space: nowrap;
}

.ds-wordmark:hover {
	color: #ffdea5;
}

.ds-wordmark--footer {
	font-size: 32px;
}

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

/* Header */

.ds-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	height: var(--ds-header);
	background: rgba(22, 19, 14, 0.9);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: var(--ds-shadow-header);
}

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

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

.ds-header__inner {
	height: 100%;
	max-width: calc(var(--ds-container) + var(--ds-margin) * 2);
	margin: 0 auto;
	padding: 0 var(--ds-margin);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.ds-header__brand {
	display: flex;
	align-items: center;
	min-width: 0;
}

.ds-nav__list {
	display: none;
	align-items: center;
	gap: 24px;
}

.ds-nav__list a {
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ds-on-variant);
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.ds-nav__list a:hover,
.ds-nav__list .current-menu-item > a,
.ds-nav__list .is-active > a {
	color: var(--ds-primary);
	border-bottom-color: var(--ds-primary);
}

.ds-nav__reservar-mobile {
	display: none;
}

.ds-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.ds-header__shop {
	display: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ds-on-variant);
}

.ds-header__shop:hover {
	color: var(--ds-primary);
}

.ds-cart-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ds-primary);
}

.ds-cart-link__label {
	display: none;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ds-cart-link__count {
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--ds-primary);
	color: var(--ds-on-primary);
	font-size: 10px;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
}

@media (min-width: 1024px) {
	.ds-header__shop,
	.ds-cart-link__label {
		display: inline;
	}
}

.ds-header__reservar {
	display: none;
}

.ds-header__seal {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: 1px solid var(--ds-outline-variant);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ds-font-script);
	font-size: 16px;
	color: var(--ds-primary);
	background: var(--ds-surface-high);
}

.ds-nav-toggle {
	appearance: none;
	background: transparent;
	border: 1px solid var(--ds-outline-variant);
	color: var(--ds-primary);
	width: 40px;
	height: 40px;
	border-radius: var(--ds-radius-lg);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.ds-nav-toggle__close {
	display: none;
}

body.ds-nav-open .ds-nav-toggle__open {
	display: none;
}

body.ds-nav-open .ds-nav-toggle__close {
	display: block;
}

@media (min-width: 1024px) {
	.ds-nav__list {
		display: flex;
	}

	.ds-header__reservar {
		display: inline-flex;
	}

	.ds-nav-toggle {
		display: none;
	}
}

@media (max-width: 1023px) {
	.ds-nav {
		position: fixed;
		top: var(--ds-header);
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(17, 14, 9, 0.96);
		padding: 32px var(--ds-margin);
		transform: translateX(100%);
		transition: transform 0.25s ease;
		z-index: 40;
	}

	.admin-bar .ds-nav {
		top: calc(var(--ds-header) + 46px);
	}

	body.ds-nav-open .ds-nav {
		transform: none;
	}

	.ds-nav__list {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.ds-nav__list a {
		font-size: 14px;
		letter-spacing: 0.16em;
	}

	.ds-nav__reservar-mobile {
		display: list-item;
		margin-top: 12px;
	}
}

.ds-main {
	padding-top: var(--ds-header);
}

/* Hero */

.ds-hero {
	position: relative;
	min-height: 72vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 72px var(--ds-margin) 96px;
	text-align: center;
	overflow: hidden;
}

.ds-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: var(--ds-surface);
}

.ds-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(22, 19, 14, 0.82) 0%, rgba(22, 19, 14, 0.42) 45%, var(--ds-surface) 100%);
	z-index: 1;
}

.ds-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.32;
	mix-blend-mode: luminosity;
	filter: saturate(0.7);
}

.ds-hero__content {
	position: relative;
	z-index: 2;
	max-width: 860px;
}

.ds-hero__kicker {
	margin-bottom: 12px;
	letter-spacing: 0.28em;
}

.ds-hero__title {
	font-family: var(--ds-font-script);
	font-weight: 400;
	font-size: clamp(64px, 11vw, 120px);
	line-height: 0.95;
	color: var(--ds-primary);
	margin: 0 0 28px;
}

.ds-hero__lead {
	font-size: 16px;
	line-height: 24px;
	color: var(--ds-on-variant);
	max-width: 560px;
	margin: 0 auto 8px;
}

@media (min-width: 768px) {
	.ds-hero__lead {
		font-size: 18px;
		line-height: 28px;
	}
}

.ds-hero__mission {
	display: inline-block;
	margin-top: 8px;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	color: var(--ds-on-surface);
}

.ds-hero__brands {
	display: flex;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
	margin: 32px 0 8px;
}

.ds-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	margin-top: 28px;
}

.ds-logo-orb {
	display: block;
	width: 88px;
	height: 88px;
	border-radius: 999px;
	overflow: hidden;
	border: 2px solid rgba(233, 193, 118, 0.5);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
	background: #050403;
	transition: transform 0.3s ease;
}

@media (min-width: 768px) {
	.ds-logo-orb {
		width: 104px;
		height: 104px;
	}
}

.ds-logo-orb--lg {
	width: 148px;
	height: 148px;
}

@media (min-width: 768px) {
	.ds-logo-orb--lg {
		width: 188px;
		height: 188px;
	}
}

.ds-logo-orb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	padding: 10%;
	box-sizing: border-box;
	background: #050403;
}

.ds-logo-orb:hover,
.ds-brand:hover .ds-logo-orb {
	transform: scale(1.08);
}

/* Delivery */

.ds-delivery {
	position: relative;
	z-index: 3;
	margin-top: -56px;
	margin-bottom: 72px;
}

.ds-delivery__box {
	position: relative;
	background: rgba(45, 41, 36, 0.92);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(78, 70, 57, 0.35);
	border-radius: var(--ds-radius-lg);
	padding: 24px;
	box-shadow: var(--ds-shadow-warm);
	display: flex;
	flex-direction: column;
	gap: 24px;
}

@media (min-width: 960px) {
	.ds-delivery__box:not(.ds-delivery__box--map) {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 32px;
		padding: 28px 32px;
	}
}

.ds-delivery__box--map {
	padding: 24px 20px 20px;
	gap: 20px;
}

@media (min-width: 960px) {
	.ds-delivery__box--map {
		padding: 28px 28px 22px;
	}
}

.ds-delivery__head {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (min-width: 720px) {
	.ds-delivery__head {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
		gap: 24px;
	}
}

.ds-delivery__lead {
	margin-top: 8px;
	max-width: 46rem;
	color: var(--ds-on-variant);
	font-size: 14px;
	line-height: 22px;
}

.ds-delivery__layout {
	display: grid;
	gap: 16px;
}

@media (min-width: 960px) {
	.ds-delivery__layout {
		grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.85fr);
		align-items: stretch;
		gap: 20px;
	}
}

.ds-delivery__map-wrap {
	min-width: 0;
}

.ds-delivery__map {
	height: 360px;
	border-radius: var(--ds-radius-lg);
	overflow: hidden;
	border: 1px solid rgba(78, 70, 57, 0.45);
	background: #110e09;
}

@media (min-width: 960px) {
	.ds-delivery__map {
		height: 480px;
	}
}

.ds-delivery__map .leaflet-container {
	width: 100%;
	height: 100%;
	background: #110e09;
	font-family: var(--ds-font-body);
}

.ds-delivery__map .leaflet-container img {
	max-width: none;
	height: unset;
	display: inline;
}

.ds-delivery__map .leaflet-control-attribution {
	background: rgba(17, 14, 9, 0.72);
	color: var(--ds-outline);
	font-size: 10px;
}

.ds-delivery__map .leaflet-control-attribution a {
	color: var(--ds-on-variant);
}

.ds-delivery__map .leaflet-bar {
	border: 1px solid rgba(78, 70, 57, 0.7);
	border-radius: var(--ds-radius);
	overflow: hidden;
	box-shadow: none;
}

.ds-delivery__map .leaflet-bar a {
	background: #231f1a;
	color: var(--ds-primary);
	border-bottom-color: rgba(78, 70, 57, 0.7);
	width: 30px;
	height: 30px;
	line-height: 30px;
}

.ds-delivery__map .leaflet-bar a:hover {
	background: #2d2924;
	color: #ffdea5;
}

.ds-delivery__map .leaflet-popup-content-wrapper,
.ds-delivery__map .leaflet-popup-tip {
	background: #231f1a;
	color: var(--ds-on-surface);
	box-shadow: var(--ds-shadow-warm);
}

.ds-delivery__map .leaflet-popup-content-wrapper {
	border-radius: var(--ds-radius);
	border: 1px solid rgba(78, 70, 57, 0.55);
}

.ds-delivery__map .leaflet-popup-content {
	margin: 10px 12px;
	font-size: 13px;
	line-height: 1.4;
}

.ds-delivery__map .leaflet-popup-content strong {
	font-family: var(--ds-font-headline);
	font-weight: 700;
	color: var(--ds-primary);
}

.ds-delivery__map .leaflet-popup-content span {
	color: var(--ds-on-variant);
	font-size: 12px;
}

.ds-delivery__legend {
	margin-top: 8px;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ds-outline);
}

.ds-delivery__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	max-height: 320px;
	overflow: auto;
	padding-right: 4px;
}

@media (min-width: 960px) {
	.ds-delivery__list {
		grid-template-columns: 1fr;
		max-height: 480px;
	}
}

.ds-delivery__place {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 8px 10px;
	border: 1px solid transparent;
	border-radius: var(--ds-radius);
	background: rgba(17, 14, 9, 0.35);
	color: var(--ds-on-surface);
	text-align: left;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.ds-delivery__place:hover,
.ds-delivery__place.is-active {
	border-color: rgba(233, 193, 118, 0.45);
	background: rgba(233, 193, 118, 0.08);
}

.ds-delivery__place.is-hub .ds-delivery__pin {
	box-shadow: 0 0 0 4px rgba(233, 193, 118, 0.22);
}

.ds-delivery__pin {
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ds-primary);
}

.ds-delivery__place-copy {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.ds-delivery__place-name {
	font-size: 13px;
	line-height: 18px;
	font-weight: 600;
}

.ds-delivery__place-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 10px;
	font-size: 11px;
	line-height: 14px;
	color: var(--ds-on-variant);
}

.ds-delivery__cp {
	letter-spacing: 0.04em;
	color: var(--ds-primary);
}

.ds-map-marker {
	background: none;
	border: 0;
}

.ds-map-marker span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--ds-primary);
	box-shadow: 0 0 0 2px #110e09;
}

.ds-map-marker.is-hub span {
	background: #ffdea5;
	box-shadow: 0 0 0 3px #110e09, 0 0 0 6px rgba(233, 193, 118, 0.35);
}

.ds-map-marker.is-active span {
	box-shadow: 0 0 0 3px #110e09, 0 0 0 7px rgba(233, 193, 118, 0.45);
}

.ds-route--active {
	stroke-dasharray: 12 10;
	animation: ds-route-flow 1.4s linear infinite;
}

@keyframes ds-route-flow {
	to {
		stroke-dashoffset: -22;
	}
}

.ds-delivery__ornament {
	display: flex;
	justify-content: space-evenly;
	position: absolute;
	top: -1px;
	left: 12%;
	right: 12%;
	pointer-events: none;
}

.ds-delivery__ornament span {
	width: 56px;
	height: 2px;
	background: var(--ds-primary);
	border-radius: 1px;
}

.ds-delivery__copy {
	flex: 1;
}

.ds-delivery__copy .ds-label {
	margin-bottom: 8px;
}

.ds-delivery__copy p {
	color: var(--ds-on-variant);
	font-size: 14px;
	line-height: 22px;
}

.ds-delivery__cta {
	flex-shrink: 0;
	padding-top: 8px;
}

@media (min-width: 960px) {
	.ds-delivery__cta {
		padding-top: 0;
		padding-left: 32px;
		border-left: 1px solid rgba(78, 70, 57, 0.5);
		min-width: 240px;
	}
}

/* Brands */

.ds-brands {
	padding: 48px 0 80px;
}

.ds-brands__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 48px 64px;
	padding: 16px 0 8px;
}

.ds-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	color: var(--ds-primary);
}

.ds-brands__grid--page {
	padding: 8px 0 80px;
}

.ds-brand__count {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: none;
	color: var(--ds-on-variant);
	font-weight: 400;
}

.ds-chip__count {
	margin-left: 6px;
	opacity: 0.8;
	font-weight: 500;
}

/* Cast / Se buscan */

.ds-cast {
	position: relative;
	margin-top: 8px;
	padding: 0 0 8px;
	background: var(--ds-surface-lowest);
	overflow: visible;
}

.ds-cast__media {
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--ds-margin);
	box-sizing: border-box;
}

.ds-cast__media img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	object-position: center top;
	image-rendering: auto;
}

.ds-cast__title {
	font-size: clamp(40px, 8vw, 80px);
	line-height: 0.95;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--ds-on-surface);
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
}

.ds-cast__sub {
	font-family: var(--ds-font-headline);
	font-size: clamp(20px, 3vw, 32px);
	line-height: 1.2;
	font-weight: 400;
	color: var(--ds-primary);
	margin-top: 16px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Footer */

.ds-footer {
	background: var(--ds-surface-lowest);
	padding: 48px 0 32px;
	border-top: 1px solid rgba(78, 70, 57, 0.2);
}

.ds-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-bottom: 40px;
	text-align: center;
}

@media (min-width: 768px) {
	.ds-footer__grid {
		grid-template-columns: 1.3fr 1fr 1fr;
		text-align: left;
		gap: 48px;
	}
}

.ds-footer__brand p,
.ds-footer__col p,
.ds-footer__links a {
	color: var(--ds-on-variant);
}

.ds-footer__brand p {
	margin-top: 16px;
	max-width: 28ch;
}

@media (max-width: 767px) {
	.ds-footer__brand p {
		margin-left: auto;
		margin-right: auto;
	}
}

.ds-footer__col .ds-label {
	margin-bottom: 16px;
}

.ds-footer__links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ds-footer__links a:hover {
	color: var(--ds-primary);
}

.ds-footer__icons {
	display: flex;
	gap: 16px;
	margin-top: 12px;
	color: var(--ds-primary);
	justify-content: center;
}

@media (min-width: 768px) {
	.ds-footer__icons {
		justify-content: flex-start;
	}
}

.ds-footer__copy {
	padding-top: 32px;
	border-top: 1px solid rgba(78, 70, 57, 0.12);
	text-align: center;
	font-size: 12px;
	line-height: 16px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ds-on-variant);
}

/* Inner pages */

.ds-page-hero {
	position: relative;
	min-height: 52vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 64px var(--ds-margin) 72px;
	overflow: hidden;
}

.ds-page-hero--short {
	min-height: 38vh;
}

.ds-page-hero__bg {
	position: absolute;
	inset: 0;
}

.ds-page-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.28;
	mix-blend-mode: luminosity;
}

.ds-page-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(22, 19, 14, 0.55), var(--ds-background));
}

.ds-page-hero__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
}

.ds-page-title {
	font-size: clamp(32px, 5vw, 48px);
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 8px 0 16px;
	color: var(--ds-on-surface);
}

.ds-page-lead {
	color: var(--ds-on-variant);
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 24px;
}

.ds-article {
	padding-bottom: 80px;
}

.ds-article__head {
	text-align: center;
	padding: 64px var(--ds-margin) 24px;
}

.ds-prose {
	padding: 16px var(--ds-margin) 80px;
	color: var(--ds-on-variant);
	font-size: 18px;
	line-height: 28px;
}

.ds-prose p + p {
	margin-top: 16px;
}

.ds-prose a {
	color: var(--ds-primary);
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.ds-prose h2,
.ds-prose h3 {
	color: var(--ds-on-surface);
	margin: 32px 0 12px;
}

.ds-loop {
	display: flex;
	flex-direction: column;
	gap: 28px;
	padding-bottom: 80px;
}

.ds-card {
	background: var(--ds-surface-container);
	border: 1px solid rgba(78, 70, 57, 0.35);
	border-radius: var(--ds-radius-lg);
	padding: 24px;
}

.ds-card__title {
	font-size: 24px;
	margin-bottom: 8px;
}

.ds-card__title a:hover {
	color: var(--ds-primary);
}

.ds-card__meta {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ds-outline);
	margin-bottom: 12px;
}

/* Reserve form */

.ds-reserve {
	padding-bottom: 96px;
}

.ds-reserve__salas {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin: 8px 0 40px;
}

@media (min-width: 720px) {
	.ds-reserve__salas {
		grid-template-columns: repeat(4, 1fr);
	}
}

.ds-reserve__sala {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 12px;
	border: 1px solid rgba(78, 70, 57, 0.4);
	border-radius: var(--ds-radius-lg);
	color: var(--ds-on-variant);
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
}

.ds-reserve__sala img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	padding: 8%;
	box-sizing: border-box;
	background: #050403;
	border-radius: 999px;
	border: 2px solid rgba(233, 193, 118, 0.4);
}

.ds-reserve__sala.is-active,
.ds-reserve__sala:hover {
	border-color: var(--ds-primary);
	color: var(--ds-primary);
}

.ds-form {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.ds-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
}

@media (min-width: 640px) {
	.ds-form__row {
		grid-template-columns: 1.2fr 0.9fr 0.7fr;
	}
}

.ds-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ds-field span {
	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--ds-primary);
}

.ds-field input,
.ds-field select,
.ds-field textarea {
	background: transparent;
	border: 0;
	border-bottom: 1px solid var(--ds-primary);
	border-radius: 0;
	padding: 10px 0;
	color: var(--ds-on-surface);
	outline: none;
}

.ds-field input:focus,
.ds-field select:focus,
.ds-field textarea:focus {
	border-bottom-width: 2px;
}

.ds-field select {
	background: var(--ds-surface);
}

.ds-hp {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.ds-notice {
	padding: 16px 18px;
	border-radius: var(--ds-radius-lg);
	margin-bottom: 28px;
	font-size: 15px;
	line-height: 22px;
}

.ds-notice--ok {
	background: rgba(197, 160, 89, 0.16);
	border: 1px solid rgba(233, 193, 118, 0.4);
	color: var(--ds-primary);
}

.ds-notice--err {
	background: rgba(147, 0, 10, 0.28);
	border: 1px solid var(--ds-error);
	color: var(--ds-error);
}

/* WP chrome */

.ds-theme .wp-block-group,
.ds-theme .entry-content {
	color: inherit;
}

.ds-pagination {
	margin-top: 32px;
}

.ds-pagination .nav-links {
	display: flex;
	gap: 16px;
	justify-content: center;
}

.ds-theme .alignwide,
.ds-theme .alignfull {
	margin-left: 0;
	margin-right: 0;
}

/* Brand page + carta */

.ds-brand-hero {
	position: relative;
	min-height: 78vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 96px var(--ds-margin) 80px;
	overflow: hidden;
}

.ds-brand-hero__bg {
	position: absolute;
	inset: 0;
}

.ds-brand-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.38;
	mix-blend-mode: overlay;
}

.ds-brand-hero__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(22, 19, 14, 0.75), rgba(22, 19, 14, 0.55), var(--ds-background));
}

.ds-brand-hero__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.ds-brand-hero__logo {
	display: block;
	width: 140px;
	height: 140px;
	margin: 0 auto 24px;
	filter: drop-shadow(0 0 18px rgba(233, 193, 118, 0.3));
}

.ds-brand-hero__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 6%;
	box-sizing: border-box;
}

.ds-brand-hero__title {
	font-size: clamp(32px, 5vw, 48px);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffdea5;
	margin: 8px 0 12px;
}

.ds-brand-hero--antojitos .ds-brand-hero__title {
	font-family: var(--ds-font-script);
	font-size: clamp(56px, 9vw, 92px);
	letter-spacing: 0;
	text-transform: none;
	font-weight: 400;
	color: var(--ds-on-surface);
}

.ds-brand-hero--conchi .ds-brand-hero__title {
	text-transform: none;
	letter-spacing: -0.02em;
	color: var(--ds-on-surface);
}

.ds-brand-hero--aisushi .ds-brand-hero__title {
	letter-spacing: 0.08em;
	color: var(--ds-on-surface);
}

.ds-carta--aisushi .ds-brand-hero__title,
.ds-brand-hero__title {
	font-family: var(--ds-font-headline);
}

.ds-brand-hero__tag {
	font-family: var(--ds-font-script);
	font-size: clamp(28px, 4vw, 40px);
	color: var(--ds-primary);
	margin-bottom: 16px;
}

.ds-carta {
	padding: 72px 0 96px;
	background: var(--ds-surface-lowest);
}

.ds-section-title--lines {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}

.ds-section-title--lines::before,
.ds-section-title--lines::after {
	content: "";
	width: 48px;
	height: 1px;
	background: rgba(233, 193, 118, 0.35);
}

.ds-carta__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 900px) {
	.ds-carta--tierra .ds-carta__grid {
		grid-template-columns: 5fr 7fr;
		gap: 32px;
		align-items: start;
	}

	.ds-carta--antojitos .ds-carta__grid,
	.ds-carta--aisushi .ds-carta__grid {
		grid-template-columns: 1fr 1fr;
	}

	.ds-carta--conchi .ds-carta__grid {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 48px;
		align-items: start;
	}
}

.ds-mcard {
	background: var(--ds-surface-container);
	border: 1px solid rgba(78, 70, 57, 0.25);
	border-radius: 8px;
	padding: 28px 24px;
	position: relative;
}

.ds-mcard--framed {
	background: var(--ds-surface-container);
}

.ds-mcard--framed::before,
.ds-mcard--framed::after {
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	border: 1px solid rgba(233, 193, 118, 0.4);
	pointer-events: none;
}

.ds-mcard--framed::before {
	top: 8px;
	left: 8px;
	border-right: 0;
	border-bottom: 0;
}

.ds-mcard--framed::after {
	bottom: 8px;
	right: 8px;
	border-left: 0;
	border-top: 0;
}

.ds-mcard--split {
	background: var(--ds-surface-high);
}

.ds-mcard__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(78, 70, 57, 0.3);
}

.ds-mcard__title {
	font-family: var(--ds-font-headline);
	font-size: 24px;
	font-weight: 600;
	color: var(--ds-on-surface);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 10px;
}

.ds-mcard__num {
	color: var(--ds-primary);
}

.ds-mcard__meta {
	font-family: var(--ds-font-body);
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ds-on-variant);
	font-weight: 600;
}

.ds-mcard__icon {
	color: var(--ds-primary);
	opacity: 0.85;
}

.ds-mcard__lead {
	color: var(--ds-on-variant);
	font-size: 15px;
	line-height: 24px;
	margin-bottom: 18px;
}

.ds-mcard__sub {
	font-family: var(--ds-font-headline);
	font-size: 18px;
	color: var(--ds-primary);
	margin-bottom: 12px;
}

.ds-mcard__sub span {
	margin-right: 6px;
}

.ds-mcard__cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.ds-mcard__cols {
		grid-template-columns: 1fr 1fr;
	}
}

.ds-mcard__house {
	margin-top: 24px;
	padding: 18px;
	background: rgba(17, 14, 9, 0.45);
	border: 1px solid rgba(78, 70, 57, 0.35);
}

.ds-mcard__fig {
	margin-top: 28px;
	display: flex;
	justify-content: center;
	opacity: 0.7;
}

.ds-mcard__fig img {
	max-width: 220px;
	filter: grayscale(0.2);
}

.ds-mcard__aside {
	margin-top: 20px;
	padding: 14px 16px;
	background: rgba(17, 14, 9, 0.4);
}

.ds-mcard__note {
	display: block;
	margin-top: 4px;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ds-primary);
	font-style: normal;
}

.ds-mlist {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ds-mlist li strong {
	display: block;
	color: var(--ds-on-surface);
	font-weight: 600;
}

.ds-mlist li span {
	display: block;
	color: var(--ds-on-variant);
	font-size: 14px;
	line-height: 22px;
	font-style: italic;
}

.ds-mlist--dotted li strong {
	margin-bottom: 2px;
}

.ds-mlist--bullets {
	list-style: disc;
	padding-left: 18px;
	gap: 8px;
}

.ds-mlist--bullets li {
	color: var(--ds-on-surface);
}

.ds-mlist--price .ds-mlist__row {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	align-items: baseline;
}

.ds-mlist--price .ds-mlist__row strong {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ds-mlist--price .ds-mlist__row strong::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ds-primary);
	flex-shrink: 0;
}

.ds-badge {
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 4px 8px;
	border: 1px solid rgba(233, 193, 118, 0.4);
	color: var(--ds-primary);
	border-radius: 999px;
	white-space: nowrap;
}

.ds-carta-heading {
	font-family: var(--ds-font-headline);
	font-size: 28px;
	color: var(--ds-primary);
	margin-bottom: 24px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(233, 193, 118, 0.35);
}

.ds-mcard--photo {
	display: grid;
	grid-template-columns: 96px 1fr;
	gap: 16px;
	align-items: start;
	margin-bottom: 16px;
}

.ds-mcard--photo img {
	width: 96px;
	height: 96px;
	object-fit: cover;
	border-radius: 6px;
}

.ds-mcard--photo .ds-mcard__title {
	text-transform: none;
	font-size: 20px;
	justify-content: space-between;
	width: 100%;
}

.ds-mcard--photo p {
	color: var(--ds-on-variant);
	font-size: 14px;
	line-height: 22px;
	margin-top: 6px;
}

.ds-conchi-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 8px;
}

@media (min-width: 640px) {
	.ds-conchi-cards {
		grid-template-columns: 1fr 1fr;
	}

	.ds-conchi-cards .ds-mcard:last-child {
		grid-column: 1 / -1;
	}
}

.ds-spec {
	display: grid;
	grid-template-columns: 36px 1fr;
	gap: 12px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(78, 70, 57, 0.3);
}

.ds-spec__icon {
	color: var(--ds-primary);
}

.ds-spec h3 {
	font-family: var(--ds-font-headline);
	font-size: 20px;
	color: var(--ds-on-surface);
	margin-bottom: 6px;
}

.ds-spec p {
	color: var(--ds-on-variant);
	font-size: 15px;
	line-height: 22px;
}

.ds-suggest {
	margin-top: 24px;
	padding: 20px;
	border: 1px solid rgba(233, 193, 118, 0.35);
	border-radius: 8px;
}

.ds-suggest h3 {
	font-family: var(--ds-font-headline);
	font-size: 22px;
	color: var(--ds-on-surface);
	margin: 8px 0;
}

.ds-suggest p {
	color: var(--ds-on-variant);
}

.ds-carta__gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	margin-top: 40px;
}

@media (min-width: 800px) {
	.ds-carta__gallery {
		grid-template-columns: 1fr 1fr;
	}
}

.ds-carta__gallery img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}

.ds-mcard--sushi .ds-mcard__title {
	text-transform: none;
}

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

	*,
	*::before,
	*::after {
		transition: none !important;
	}
}
