:root {
	--canvas: #faf6f0;
	--surface: #ffffff;
	--surface-muted: #f6ebe7;
	--border: #ece5db;
	--border-strong: #dcd3c6;
	--ink: #26211c;
	--ink-soft: #6b6156;
	--ink-muted: #a99e90;
	--accent: #b63d31;
	--accent-hover: #8f2f26;
	--on-accent: #ffffff;
	--night: #201b17;
	--radius: 14px;
	--radius-sm: 10px;
	--pill: 999px;
	--maxw: 1200px;
	--font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
	--font-disp: 'Bricolage Grotesque', 'Hanken Grotesk', system-ui, sans-serif;
	--shadow: 0 1px 2px rgba(38, 33, 28, 0.05);
	--shadow-lg: 0 20px 50px rgba(38, 33, 28, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--ink);
	background: var(--canvas);
	-webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { font-family: var(--font-disp); letter-spacing: -0.02em; margin: 0; color: var(--ink); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

.disp { font-family: var(--font-disp); letter-spacing: -0.02em; }

.eyebrow {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--accent);
}

.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 16px;
	padding: 14px 26px;
	border-radius: var(--radius-sm);
	cursor: pointer;
	border: 1px solid transparent;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
	white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-hover); color: var(--on-accent); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.link-arrow { font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

.site-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(32, 27, 23, 0.92);
	backdrop-filter: saturate(140%) blur(8px);
	border-bottom: 1px solid #3a322b;
}
.site-nav__inner {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 16px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.site-nav__brand { display: flex; align-items: center; gap: 10px; }
.site-nav__brand img { height: 46px; width: auto; }
.site-nav__links { display: flex; align-items: center; gap: 26px; }
.site-nav__links a { color: #d8cdbf; font-size: 15px; font-weight: 500; }
.site-nav__links a:hover, .site-nav__links a.is-active { color: #fff; }
.site-nav__links a.btn-primary, .site-nav__links a.btn-primary:hover { color: var(--on-accent); }
.site-nav__toggle { display: none; background: none; border: 0; color: #f3ebe1; cursor: pointer; padding: 6px; }

.section { padding: 80px 0; }
.section--tight { padding: 48px 0; }
.page-header + .section { padding-top: 32px; }

.hero { padding: 72px 0 64px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__badge {
	display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
	background: var(--surface-muted); color: var(--accent);
	font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: var(--pill);
	margin-bottom: 22px;
}
.hero h1 { font-size: 56px; line-height: 1.05; font-weight: 800; }
.hero__sub { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 520px; margin: 20px 0 28px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__media { position: relative; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 4; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.clients { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
.clients__label { text-align: center; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 26px; }
.clients__row { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.clients__row img { height: 40px; width: auto; opacity: 0.55; filter: grayscale(1); transition: opacity 0.2s, filter 0.2s; }
.clients__row img:hover { opacity: 0.9; filter: grayscale(0); }

.section__head { text-align: center; max-width: 620px; margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.section__head h2 { font-size: 38px; font-weight: 700; }

.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.card__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-muted); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__media img { transform: scale(1.04); }
.card__body { padding: 28px 30px 32px; display: flex; flex-direction: column; gap: 12px; }
.card__body h3 { font-size: 24px; font-weight: 700; }
.card__body p { margin: 0; color: var(--ink-soft); line-height: 1.55; }

.values { background: var(--surface-muted); border-radius: 24px; padding: 52px 56px; }
.values__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 40px; }
.value { display: flex; flex-direction: column; gap: 12px; }
.value__icon { display: inline-flex; width: 46px; height: 46px; border-radius: 12px; background: var(--surface); color: var(--accent); align-items: center; justify-content: center; }
.value h4 { font-size: 20px; font-weight: 700; }
.value p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }

.cta-band { background: var(--night); border-radius: 24px; padding: 64px 56px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.cta-band h2 { font-size: 40px; font-weight: 700; color: #fff; max-width: 640px; line-height: 1.06; }
.cta-band p { margin: 0; font-size: 18px; color: #cdbfae; max-width: 520px; }

.contact { padding: 80px 0; }
.contact__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
.contact h2 { font-size: 32px; font-weight: 700; margin-bottom: 6px; }
.contact__sub { color: var(--ink-soft); margin: 0 0 24px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.field input, .field textarea {
	width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
	background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-sm); padding: 12px 14px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--surface-muted); }
.contact__feedback { margin-top: 14px; font-weight: 500; }
.contact__feedback--ok { color: #2f6b4f; }
.contact__feedback--error { color: var(--accent); }
.contact__info { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 32px; box-shadow: var(--shadow); }
.contact__info h3 { font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.contact__line { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; color: var(--ink-soft); }
.contact__line svg { color: var(--accent); flex-shrink: 0; }
.contact__line strong { color: var(--ink); font-weight: 600; }

.site-footer { background: var(--night); color: #cdbfae; padding: 56px 0 28px; margin-top: auto; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid #3a322b; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 15px; font-weight: 600; margin-bottom: 12px; letter-spacing: 0; }
.site-footer__brand .disp { font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.site-footer p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-muted); max-width: 300px; }
.site-footer__col { display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.site-footer__col a { color: #cdbfae; }
.site-footer__col a:hover { color: #fff; }
.site-footer__bottom { padding-top: 22px; font-size: 14px; color: #877c6e; }

@media (max-width: 900px) {
	.hero__grid, .contact__grid, .cards, .values__grid, .site-footer__grid { grid-template-columns: 1fr; }
	.values__grid { gap: 28px; }
	.hero { padding: 48px 0; }
	.hero h1 { font-size: 40px; }
	.section { padding: 56px 0; }
	.section__head h2, .cta-band h2 { font-size: 30px; }
	.site-nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--night); border-bottom: 1px solid #3a322b; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0; }
	.site-nav__links.is-open { display: flex; }
	.site-nav__links a { padding: 12px 32px; }
	.site-nav__links .btn { margin: 8px 32px; justify-content: center; }
	.site-nav__toggle { display: inline-flex; }
	.values, .cta-band { padding: 40px 28px; }
	.contact__info { margin-top: 8px; }
}

@media (max-width: 560px) {
	.wrap, .site-nav__inner { padding-left: 20px; padding-right: 20px; }
	.hero h1 { font-size: 34px; }
	.clients__row { gap: 32px; }
	.clients__row img { height: 30px; }
}

.page-header { padding: 64px 0 20px; text-align: center; }
.page-header .eyebrow { display: block; margin-bottom: 10px; }
.page-header h1 { font-size: 44px; font-weight: 800; }
.page-header p { margin: 14px auto 0; font-size: 18px; color: var(--ink-soft); max-width: 640px; }

.prose p { margin: 0 0 16px; color: var(--ink-soft); line-height: 1.7; font-size: 17px; }
.prose p:last-child { margin-bottom: 0; }

.about-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 56px; align-items: center; }
.about-figure { display: flex; justify-content: center; }
.about-figure img { max-width: 260px; width: 100%; }

.service-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.service-row + .service-row { margin-top: 56px; }
.service-row--reverse .service-row__media { order: -1; }
.service-row__media { display: flex; justify-content: center; }
.service-row__media img { width: 100%; max-width: 240px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow-lg); }
.service-row__body h2 { font-size: 30px; font-weight: 700; margin-bottom: 14px; }
.service-row__body p { margin: 0 0 18px; color: var(--ink-soft); line-height: 1.7; font-size: 17px; }
.service-row__body .btn { margin-top: 2px; }
.service-extra { margin-top: 72px; background: var(--surface-muted); border-radius: 20px; padding: 40px 44px; text-align: center; }
.service-extra h2 { font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.service-extra p { color: var(--ink-soft); margin: 0 0 18px; }
.service-extra ul { list-style: none; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 0; padding: 0; }
.service-extra li { background: var(--surface); border: 1px solid var(--border); border-radius: var(--pill); padding: 10px 22px; font-weight: 600; color: var(--ink); }
.btn-sm { padding: 10px 18px; font-size: 15px; }

.recipe-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 48px; }
.recipe-featured--noimg { grid-template-columns: 1fr; }
.recipe-featured--noimg .recipe-featured__body { padding: 44px; }
.recipe-featured__media { background: var(--surface-muted); min-height: 320px; }
.recipe-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.recipe-featured__body { padding: 40px; display: flex; flex-direction: column; gap: 14px; align-self: center; }
.recipe-featured__body h2 { font-size: 30px; font-weight: 700; line-height: 1.1; }
.recipe-featured__body h2 a { color: var(--ink); }
.recipe-featured__body h2 a:hover { color: var(--accent); }
.recipe-date { font-size: 14px; color: var(--ink-muted); }
.recipe-featured__body .prose p { font-size: 16px; }

.recipe-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.recipe-card { display: flex; flex-direction: column; gap: 10px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px 26px 26px; box-shadow: var(--shadow); }
.recipe-card h3 { font-size: 20px; font-weight: 700; line-height: 1.15; }
.recipe-card h3 a { color: var(--ink); }
.recipe-card h3 a:hover { color: var(--accent); }
.recipe-card p { margin: 0; color: var(--ink-soft); line-height: 1.6; font-size: 15px; flex: 1; }
.recipe-card .link-arrow { margin-top: 4px; font-size: 15px; }

.recipe-detail { max-width: 820px; margin: 0 auto; }
.recipe-detail__head { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.recipe-detail__head h1 { font-size: 40px; font-weight: 800; line-height: 1.05; }
.recipe-detail__media { border-radius: 20px; overflow: hidden; margin-bottom: 4px; box-shadow: var(--shadow-lg); }
.recipe-detail__media img { width: 100%; display: block; cursor: zoom-in; }
.recipe-stats { display: flex; gap: 14px; flex-wrap: wrap; margin: 24px 0 8px; }
.recipe-stat { background: var(--surface-muted); border-radius: var(--radius-sm); padding: 12px 18px; }
.recipe-stat span { display: block; font-size: 13px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.recipe-stat strong { font-size: 18px; font-weight: 700; color: var(--ink); }
.recipe-block { margin-top: 32px; }
.recipe-block h2 { font-size: 24px; font-weight: 700; margin-bottom: 14px; }
.recipe-block ul { margin: 0; padding-left: 22px; color: var(--ink-soft); line-height: 1.8; }
.recipe-note { background: var(--surface-muted); border-left: 3px solid var(--accent); border-radius: var(--radius-sm); padding: 20px 24px; margin-top: 32px; }
.recipe-note h2 { font-size: 18px; margin-bottom: 8px; }
.recipe-share { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.recipe-share span { font-size: 14px; color: var(--ink-muted); }
.recipe-share a { display: inline-flex; width: 38px; height: 38px; border-radius: 10px; background: var(--surface-muted); color: var(--accent); align-items: center; justify-content: center; }
.recipe-share a:hover { background: var(--accent); color: #fff; }
.recipe-more h2 { font-size: 24px; font-weight: 700; margin-bottom: 24px; text-align: center; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.album-card { position: relative; display: block; aspect-ratio: 4 / 3; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); background: var(--surface-muted); }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.album-card:hover img { transform: scale(1.05); }
.album-card__label { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 18px 14px; background: linear-gradient(to top, rgba(32, 27, 23, 0.82), rgba(32, 27, 23, 0)); color: #fff; font-family: var(--font-disp); font-weight: 700; font-size: 18px; }
.gallery-item { display: block; aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); cursor: zoom-in; background: var(--surface-muted); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-empty { text-align: center; color: var(--ink-muted); padding: 40px 0; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(20, 16, 13, 0.9); display: flex; align-items: center; justify-content: center; padding: 24px; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 18px; right: 24px; background: none; border: 0; color: #fff; font-size: 34px; line-height: 1; cursor: pointer; }

@media (max-width: 900px) {
	.page-header h1 { font-size: 34px; }
	.about-grid, .recipe-featured { grid-template-columns: 1fr; }
	.service-row { grid-template-columns: 1fr; gap: 28px; }
	.service-row__media, .service-row--reverse .service-row__media { order: -1; }
	.recipe-featured__media { min-height: 0; aspect-ratio: 16 / 9; }
	.recipe-featured__body { padding: 28px; }
	.recipe-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.about-figure { order: -1; }
	.recipe-detail__head h1 { font-size: 30px; }
}

@media (max-width: 560px) {
	.recipe-grid { grid-template-columns: 1fr; }
}

.menu-hero { max-width: 640px; margin: 0 auto; }
.menu-week { text-align: center; margin-bottom: 22px; }
.menu-week .eyebrow { display: block; margin-bottom: 8px; }
.menu-week h1 { font-size: 30px; font-weight: 800; }
.menu-card { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.day-tabs { display: flex; gap: 6px; padding: 10px; background: var(--surface-muted); border-bottom: 1px solid var(--border); }
.day-tab { flex: 1; min-width: 0; border: 0; background: transparent; cursor: pointer; border-radius: 12px; padding: 9px 0 8px; display: flex; flex-direction: column; align-items: center; gap: 2px; font-family: var(--font-body); transition: background 0.15s; }
.day-tab b { font-family: var(--font-disp); font-size: 17px; font-weight: 700; color: var(--ink-soft); letter-spacing: -0.01em; }
.day-tab span { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); }
.day-tab[aria-selected="true"] { background: var(--accent); }
.day-tab[aria-selected="true"] b, .day-tab[aria-selected="true"] span { color: var(--on-accent); }
.day-tab:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.menu-day { padding: 24px 22px 6px; }
.menu-day:not(.is-active) { display: none; }
.menu-day__kicker { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.menu-day__date { font-family: var(--font-disp); font-size: 22px; font-weight: 700; margin: 6px 0 14px; }
.dish-list { list-style: none; margin: 0; padding: 0; }
.dish { display: flex; align-items: center; gap: 12px; padding: 11px 0; font-size: 15px; color: var(--ink); border-top: 1px solid var(--border); }
.dish:first-child { border-top: 0; }
.dish::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--accent); flex-shrink: 0; }
.menu-feriado { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; padding: 28px 20px; background: var(--surface-muted); border-radius: 14px; color: var(--ink-soft); }
.menu-feriado b { font-family: var(--font-disp); font-size: 18px; color: var(--ink); }
.menu-actions { padding: 10px 22px 22px; }
.menu-actions .btn { width: 100%; justify-content: center; }
.menu-empty { text-align: center; padding: 44px 24px; color: var(--ink-soft); }
.menu-empty b { display: block; font-family: var(--font-disp); font-size: 20px; color: var(--ink); margin-bottom: 6px; }

.menu-history { max-width: 720px; margin: 64px auto 0; }
.menu-history__head { text-align: center; margin-bottom: 24px; }
.menu-history__head h2 { font-size: 26px; font-weight: 700; }
.menu-history__head p { color: var(--ink-soft); margin: 8px 0 0; }
.history-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.history-item summary { cursor: pointer; list-style: none; padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; gap: 12px; font-family: var(--font-disp); font-weight: 700; font-size: 16px; color: var(--ink); }
.history-item summary::-webkit-details-marker { display: none; }
.history-item summary::after { content: "+"; color: var(--ink-muted); font-size: 20px; font-weight: 400; }
.history-item[open] summary::after { content: "\2013"; }
.history-item[open] summary { border-bottom: 1px solid var(--border); }
.history-body { padding: 6px 20px 16px; }
.history-day { padding: 12px 0; border-top: 1px solid var(--border); }
.history-day:first-child { border-top: 0; }
.history-day h4 { font-size: 13px; font-weight: 700; color: var(--accent); margin: 0 0 6px; letter-spacing: 0.02em; }
.history-day ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.history-day p { margin: 0; color: var(--ink-soft); font-size: 14px; }
.history-download { margin-top: 14px; font-size: 14px; }
.pager { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px; }
.pager a { font-weight: 600; }
.pager .is-disabled { color: var(--ink-muted); pointer-events: none; }
.pager span { color: var(--ink-muted); font-size: 14px; font-variant-numeric: tabular-nums; }
