/**
 * Cugini theme styles.
 * Plain modern CSS: design tokens as custom properties, flexbox/grid layout,
 * mobile-first. No SCSS, no framework. (§1, §2)
 */

/* ================================================================== */
/* 1. Design tokens (§2)                                              */
/* ================================================================== */
:root {
	--red: #DE0804;
	--gold: #C59D5F;
	--gold-dark: #a97f3f;
	--ink: #262526;
	--gray: #515150;
	--white: #FFFFFF;
	--footer-bg: #1c1c1c;
	--footer-bar-bg: #2b2b2b;
	--input-border: #D8D8D8;
	--row-stripe: #f5f5f5;

	--font-script: "Herr Von Muellerhoff", cursive;
	--font-display: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
	--font-body: "Cabin", "Helvetica Neue", Arial, sans-serif;
	--font-menu: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;

	--container: 1200px;
	--container-narrow: 820px;
	--bar-h: 43px;     /* top status bar height (matches live) */
	--header-h: 115px; /* full header height incl. bar zone (matches live: bar 43 + 72px content band) */
}

/* ================================================================== */
/* 2. Reset & base                                                    */
/* ================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	color: var(--gray);
	background: var(--white);
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--red); }
h1, h2, h3, h4 { margin: 0 0 .5em; color: var(--ink); font-weight: 400; }
p { margin: 0 0 1.3em; }
hr { border: 0; border-top: 1px solid var(--input-border); }
.icon { width: 1em; height: 1em; fill: currentColor; vertical-align: middle; }

body.nav-open, body.popup-open { overflow: hidden; }

/* ================================================================== */
/* 3. Typography helpers                                              */
/* ================================================================== */
.script {
	display: block;
	font-family: var(--font-script);
	font-weight: 400;
	color: var(--red);
	line-height: 1.0;
	font-size: 100px; /* matches live in-page script headings */
}

.display {
	display: block;
	font-family: var(--font-display);
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 7.4px; /* matches live */
	color: var(--ink);
	font-size: 37px;      /* matches live */
	line-height: 1.2;
}

.eyebrow {
	font-family: var(--font-display);
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 1.9px;
	font-size: 19px;
	color: var(--ink);
	margin-bottom: 1.4em;
}

/* Gold, uppercase, letter-spaced text link with a short underline (§2). */
.btn-link {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gold);
	padding-bottom: 4px;
	border-bottom: 1px solid var(--gold);
	line-height: 1.3;
	transition: color .2s ease, border-color .2s ease;
}
.btn-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

.prose { color: var(--gray); }
.prose a { text-decoration: underline; }
.prose img { margin: 1.5em auto; }

/* ================================================================== */
/* 4. Layout                                                          */
/* ================================================================== */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 64px 0; }
.section--tight { padding: 40px 0; }

.section-title {
	text-align: center;
	font-family: var(--font-display);
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-size: 28px;
	color: var(--ink);
}

.prose-two-col { display: grid; gap: 40px; }

@media (min-width: 781px) {
	.section { padding: 100px 0; }
	.prose-two-col { grid-template-columns: 1fr 1fr; }
}

/* ================================================================== */
/* 5. Status bar (§3a)                                                */
/* ================================================================== */
.status-bar {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 100; /* sits above the header so nothing overlaps it */
	background: var(--white);
	font-size: 16px;
	color: var(--gray);
}
.status-bar__inner {
	max-width: var(--container);
	margin: 0 auto;
	min-height: var(--bar-h);
	padding: 9px 24px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px 10px;
}
.status-bar__link {
	color: var(--gold);
	font-weight: 700;
	margin-left: 8px;
	white-space: nowrap;
}

/* ================================================================== */
/* 6. Header / navigation (§3b)                                       */
/* ================================================================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	padding-top: var(--bar-h); /* clear the fixed status bar above */
	background: var(--white);
	box-shadow: 0 1px 6px rgba(0,0,0,.08);
	transition: background .3s ease, box-shadow .3s ease;
}
.site-header__container {
	max-width: 1250px;
	margin: 0 auto;
	min-height: calc(var(--header-h) - var(--bar-h));
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-logo { display: block; line-height: 0; }
.site-logo__img { width: 250px; height: auto; }
.site-logo__img--light { display: none; }
.site-logo__img--dark { display: block; }

/* Inversed state: transparent header over a dark banner, white logo/nav. */
body.header-inversed .site-header {
	background: transparent;
	box-shadow: none;
}
body.header-inversed .site-header:not(.is-solid) .site-logo__img--light { display: block; }
body.header-inversed .site-header:not(.is-solid) .site-logo__img--dark { display: none; }
body.header-inversed .site-header:not(.is-solid) .nav--main > li > a,
body.header-inversed .site-header:not(.is-solid) .nav--social a { color: var(--white); }

/* Scrolled/solid state restores the white bar + dark logo. */
body.header-inversed .site-header.is-solid { background: var(--white); box-shadow: 0 1px 6px rgba(0,0,0,.08); }

.navigation--main { display: flex; align-items: center; gap: 28px; }
.nav { list-style: none; margin: 0; padding: 0; }
.nav--main { display: flex; align-items: center; gap: 26px; }
.nav--main li { position: relative; }
.nav--main > li > a {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--ink);
	padding: 8px 0;
	display: inline-block;
}
.nav--main > li > a:hover,
.nav--main > li.current-menu-item > a,
.nav--main > li.current-menu-parent > a { color: var(--red); }
.nav--main > li.current-menu-item > a { border-bottom: 2px solid var(--gold); }

/* Dropdown caret on the MENU item. */
.nav--main .has-dropdown > a::after {
	content: "";
	display: inline-block;
	width: 7px; height: 7px;
	margin-left: 7px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.sub-menu {
	list-style: none;
	margin: 0; padding: 8px 0;
	position: absolute;
	top: 100%; left: -14px;
	min-width: 190px;
	background: var(--white);
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	opacity: 0; visibility: hidden;
	transform: translateY(8px);
	transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav--main li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a {
	display: block;
	padding: 8px 20px;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--ink);
}
.sub-menu a:hover { color: var(--red); }

.nav--social { display: flex; gap: 14px; }
.nav--social a { color: var(--ink); font-size: 18px; line-height: 1; }
.nav--social a:hover { color: var(--red); }
.nav--social .icon { width: 18px; height: 18px; }

/* Hamburger */
.nav-trigger {
	display: none;
	width: 42px; height: 42px;
	border: 0; background: transparent;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	justify-content: space-between;
}
.nav-trigger__bar {
	display: block; height: 2px; width: 100%;
	background: var(--ink);
	transition: transform .3s ease, opacity .3s ease, background .3s ease;
}
body.header-inversed .site-header:not(.is-solid) .nav-trigger__bar { background: var(--white); }

/* Push page content below the fixed header, except on banner/hero pages
   where the banner sits under the transparent header on purpose. */
body.no-banner .site-main { padding-top: var(--header-h); }

/* ================================================================== */
/* 7. Hero (§4.1)                                                     */
/* ================================================================== */
.hero {
	position: relative;
	height: 100vh;
	min-height: 560px;
	color: var(--white);
	/* no overflow:hidden — the scroll bubble straddles the bottom seam */
}
.hero__slides { position: absolute; inset: 0; overflow: hidden; }
.hero__slide {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease;
}
.hero__slide::after { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.32); }
.hero__slide.is-active { opacity: 1; }

.hero__lockup {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 90%;
	z-index: 2;
}
.script--hero { font-size: 131px; color: var(--red); margin-bottom: 2px; line-height: 1.05; } /* 98pt, matches live */
.display--hero {
	font-family: var(--font-display);
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 9.4px; /* matches live */
	color: var(--white);
	font-size: 47px;       /* matches live */
	margin: 0 0 18px;
}
.hero__wordmark {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: 4px;
	font-size: 13px;
	color: var(--white);
	margin: 0;
}

.hero__dots {
	position: absolute;
	top: 50%; right: 26px;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 14px;
	z-index: 3;
}
.hero__dot {
	width: 12px; height: 12px;
	border-radius: 50%;
	border: 2px solid var(--white);
	background: transparent;
	cursor: pointer;
	padding: 0;
	transition: background .2s ease;
}
.hero__dot.is-active { background: var(--white); }

/* A full 80px white circle centered on the hero/section seam — only the top
   dome shows over the photo; the bottom half blends into the white section
   below, so it reads as a notch joining the hero to the page (matches live). */
.hero__scroll {
	position: absolute;
	left: 50%; bottom: -40px;
	transform: translateX(-50%);
	z-index: 4;
	width: 80px; height: 80px;
	border-radius: 50%;
	background: var(--white);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 15px;
}
/* Thin chevron built from two 2px borders rotated 45deg (dark gray). */
.hero__chev {
	width: 15px; height: 15px;
	border-right: 2px solid #555;
	border-bottom: 2px solid #555;
	transform: rotate(45deg);
	animation: cugini-bounce 2s infinite;
}
.hero__scroll:hover .hero__chev { border-color: var(--red); }
@keyframes cugini-bounce {
	0%, 100% { transform: rotate(45deg) translate(0, 0); }
	50% { transform: rotate(45deg) translate(3px, 3px); }
}

/* ================================================================== */
/* 8. Alternating two-column sections (§4.2/4.3/4.5)                  */
/* ================================================================== */
.alt { padding: 70px 0; }
.alt__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	gap: 44px;
	align-items: center;
}
.alt__text .script { margin-bottom: 2px; }
.alt__text .display { margin-bottom: 22px; }
.alt__media--pair { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.alt__media--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.alt__media--single img { width: 100%; }
.alt__media img { border-radius: 2px; }

@media (min-width: 861px) {
	.alt__inner { grid-template-columns: 1fr 1fr; gap: 60px; }
	.alt--text-right .alt__text { order: 2; }
	.alt--text-right .alt__media { order: 1; }
}

/* ================================================================== */
/* 9. Parallax divider (§4.4)                                         */
/* ================================================================== */
.parallax {
	position: relative;
	min-height: 340px;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
}
.parallax::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.28); }
.parallax__label { position: relative; text-align: center; }
.parallax__label .script { color: var(--white); }
.parallax__label .display { color: var(--white); }

/* ================================================================== */
/* 10. Interior banner (§5)                                           */
/* ================================================================== */
.banner {
	position: relative;
	min-height: 62vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.banner__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.34); }
.banner__title {
	position: relative;
	font-family: var(--font-display);
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 9.4px; /* matches live */
	font-size: 47px;       /* matches live */
	color: var(--white);
	margin: 0;
	padding: 0 20px;
}
@media (max-width: 600px) { .banner__title { font-size: 32px; letter-spacing: 6px; } }

/* ================================================================== */
/* 11. Menu page (§5b)                                                */
/* ================================================================== */
.menu-band { text-align: center; padding: 44px 0; }
.menu-band__title {
	font-family: var(--font-display);
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-size: 26px;
	color: var(--ink);
}
.menu-band--catering { background: var(--footer-bg); color: var(--white); }
.menu-band--catering .menu-band__title { color: var(--white); }
.menu-band--catering p { color: rgba(255,255,255,.82); }
.menu-band--call p { color: var(--red); font-weight: 700; max-width: 760px; margin: 0 auto; }

/* Explicit two columns so item order matches the live page exactly
   (left: 1st,3rd,5th item; right: 2nd,4th) rather than height-balanced flow. */
.menu-groups--columns { display: grid; gap: 0 56px; }
@media (min-width: 781px) { .menu-groups--columns { grid-template-columns: 1fr 1fr; } }
.menu-col { min-width: 0; }

.menu-group { margin-bottom: 40px; }
.menu-group__name {
	font-family: var(--font-menu);
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 4px;
}
.menu-group__desc { font-style: normal; font-size: 14px; margin-bottom: 8px; color: var(--gray); }
.menu-group__rule { margin: 8px 0 12px; border-top: 1px solid var(--input-border); }

.menu-split { display: grid; gap: 0 40px; }
@media (min-width: 641px) { .menu-split { grid-template-columns: 1fr 1fr; } }

.price-table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-menu);
	margin-bottom: 4px;
}
.price-table td { padding: 7px 12px; font-size: 15px; color: var(--gray); vertical-align: top; }
.price-table tr:nth-child(odd) { background: var(--row-stripe); }
.price-table__name { font-weight: 700; color: var(--ink); }
.price-table__meta { color: var(--gray); }
.price-table__price { text-align: right; white-space: nowrap; font-weight: 700; color: var(--ink); }

/* ================================================================== */
/* 12. Contact page (§5c)                                             */
/* ================================================================== */
/* Centered, bold, uppercase welcome heading (matches live). */
.contact-welcome {
	text-align: center;
	max-width: 880px;
	margin: 0 auto 34px;
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink);
}

/* Hours box: red label tab attached to a red-outlined box, two inner columns. */
.hours-box { max-width: 960px; margin: 0 auto; }
.hours-box__tab {
	display: inline-block;
	background: var(--red);
	color: var(--white);
	font-family: var(--font-display);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 13px;
	font-weight: 600;
	padding: 9px 20px;
}
.hours-box__body { border: 2px solid var(--red); padding: 0; }
.hours-grid {
	display: grid;
	grid-template-columns: auto 1fr 1fr;
	align-items: stretch;
}
.hours-grid__label {
	font-family: var(--font-display);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--ink);
	white-space: nowrap;
	padding: 22px 24px;
	align-self: center;
}
.hours-grid__col { background: var(--row-stripe); padding: 22px 24px; }
.hours-grid__col p { margin: 0 0 8px; font-weight: 700; color: var(--ink); }
.hours-grid__col p:last-child { margin-bottom: 0; }
.hours-note { font-weight: 400; color: var(--gray); }
.hours-box__footnote {
	margin: 0;
	padding: 14px 24px 18px;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: var(--red);
	font-size: 14px;
}
@media (max-width: 640px) {
	.hours-grid { grid-template-columns: 1fr; }
	.hours-grid__label { padding-bottom: 0; }
}

/* 4 image nav tiles */
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (min-width: 861px) { .tiles { grid-template-columns: repeat(4, 1fr); } }
.tile {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 190px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.tile__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); transition: background .25s ease; }
.tile:hover .tile__overlay { background: rgba(0,0,0,.6); }
.tile__label {
	position: relative;
	color: var(--white);
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 16px;
	text-align: center;
	padding: 0 10px;
}

/* Map + custom black marker */
.map { position: relative; margin: 24px 0; }
.map iframe { display: block; width: 100%; border: 0; }
.map-marker {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -100%);
	pointer-events: none;
}
.map-marker__label {
	position: relative;
	display: block;
	background: #000;
	color: var(--white);
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 12px;
	padding: 8px 12px;
	white-space: nowrap;
	box-shadow: 0 3px 12px rgba(0,0,0,.4);
}
.map-marker__label::after {
	content: "";
	position: absolute;
	bottom: -8px; left: 50%;
	transform: translateX(-50%);
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 8px solid #000;
}

.address-line {
	text-align: center;
	font-family: var(--font-display);
	letter-spacing: 1px;
	color: var(--ink);
	font-size: 17px;
}
.address-line span { color: var(--gold); margin: 0 8px; }

/* Contact Form 7 fields */
.wpcf7 { max-width: 640px; margin: 0 auto; }
.wpcf7 label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 18px; }
.wpcf7-form-control-wrap { display: block; margin-top: 6px; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
	width: 100%;
	background: var(--white);
	border: 1px solid var(--input-border);
	border-radius: 5px;
	padding: 10px 12px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink);
}
.wpcf7 textarea { min-height: 150px; resize: vertical; }
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-submit {
	background: var(--gold);
	color: var(--white);
	border: 0;
	border-radius: 4px;
	padding: 12px 34px;
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	cursor: pointer;
	transition: background .2s ease;
}
.wpcf7 input[type="submit"]:hover { background: var(--gold-dark); }

/* ================================================================== */
/* 13. Blog / Recipes (§5d/5e)                                        */
/* ================================================================== */
.blog-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.blog-head__title {
	font-family: var(--font-display);
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-size: 30px;
	color: var(--ink);
	margin: 0;
}

.cat-dropdown { position: relative; }
.cat-dropdown summary {
	list-style: none;
	cursor: pointer;
	border: 1px solid var(--input-border);
	border-radius: 999px;
	padding: 8px 18px;
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	color: var(--ink);
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.cat-dropdown summary::-webkit-details-marker { display: none; }
.cat-dropdown summary .icon { width: 12px; height: 12px; color: var(--gold); }
.cat-dropdown[open] summary .icon { transform: rotate(180deg); }
.cat-dropdown__menu {
	list-style: none;
	margin: 6px 0 0; padding: 8px 0;
	position: absolute;
	right: 0; top: 100%;
	min-width: 190px;
	background: var(--white);
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	z-index: 20;
}
.cat-dropdown__menu a {
	display: block;
	padding: 8px 20px;
	font-family: var(--font-body);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	color: var(--ink);
}
.cat-dropdown__menu a:hover { color: var(--red); }

.post-list { display: flex; flex-direction: column; gap: 70px; }
.post-list--center { max-width: 720px; margin: 0 auto; }

.post-card--center { text-align: center; }
.post-card--row {
	display: grid;
	gap: 30px;
	align-items: center;
}
@media (min-width: 781px) {
	.post-card--row { grid-template-columns: 1fr 1fr; gap: 50px; }
	.post-card--row.post-card--reverse .post-card__media { order: 2; }
	.post-card--row.post-card--reverse .post-card__body { order: 1; }
	.post-card--row .post-card__body { text-align: center; }
}
.post-card__media img { width: 100%; }
.post-card__date {
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	color: var(--gray);
	margin-bottom: 8px;
}
.post-card__title {
	font-family: var(--font-display);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 24px;
	margin: 0 0 10px;
}
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--red); }
.post-card__divider { display: block; color: var(--gold); margin: 6px 0 12px; }
.post-card__divider .icon { width: 16px; height: 16px; }
.post-card--center .post-card__divider { text-align: center; }
.post-card__excerpt { margin-bottom: 14px; }

/* Recipes: plain full-width banner image, no title overlay (matches live). */
.recipes-hero img { width: 100%; height: clamp(220px, 34vw, 430px); object-fit: cover; display: block; }

.from-kitchen {
	text-align: center;
	font-family: var(--font-menu);
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 6px;
}
.from-kitchen__rule { max-width: 120px; margin: 0 auto 46px; border-top: 2px solid var(--input-border); }

/* Single post */
.single__date { text-align: center; margin-top: 40px; }
.single__divider { text-align: center; }
.post-nav { display: flex; justify-content: space-between; margin-top: 50px; font-weight: 700; }

.pagination { margin-top: 60px; text-align: center; }
.pagination .nav-links { display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px;
	border: 1px solid var(--input-border);
	color: var(--ink);
	font-weight: 700;
}
.pagination .page-numbers.current { background: var(--gold); color: var(--white); border-color: var(--gold); }

/* ================================================================== */
/* 14. Footer (§3c)                                                   */
/* ================================================================== */
.site-footer { color: rgba(255,255,255,.75); }

.awards { background: var(--footer-bg); padding: 60px 24px; }
/* Four equal columns, contiguous, centered as a ~900px group (matches live:
   trophy is the first equal column, not a skinny outlier). */
.awards__inner {
	max-width: 900px;
	margin: 0 auto;
	display: grid;
	gap: 0;
	align-items: center;
	justify-items: center;
	grid-template-columns: 1fr;
}
@media (min-width: 781px) { .awards__inner { grid-template-columns: repeat(4, 1fr); } }
.awards__trophy { display: flex; align-items: center; justify-content: center; }
.awards__trophy img { width: 150px; height: auto; }
.awards__badge { text-align: center; }
.awards__label {
	display: block;
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 13px;
	margin-bottom: 14px;
}

/* Self-contained red star medallion (replaces the old awards.infcdn widget). */
/* Restaurant Guru-style medallion (inline SVG from cugini_badge()). A close
   recreation with no external dependency; swap in exported badge PNGs for 1:1. */
.medallion {
	display: inline-block;
	line-height: 0;
	filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
	transition: transform .2s ease;
}
.medallion:hover { transform: translateY(-3px); }
.medallion .badge { width: 116px; height: 116px; }

.follow { background: var(--footer-bg); text-align: center; padding: 10px 24px 54px; }
.follow__title {
	color: var(--white);
	font-family: var(--font-display);
	font-weight: 200;
	text-transform: uppercase;
	letter-spacing: 5px;
	font-size: 20px;
	margin-bottom: 18px;
}
.follow__social { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; justify-content: center; }
.follow__social a { color: var(--white); }
.follow__social a:hover { color: var(--gold); }
.follow__social .icon { width: 24px; height: 24px; }

.colophon { background: var(--footer-bar-bg); text-align: center; padding: 26px 24px; }
.colophon__line { margin: 0 0 8px; font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: .3px; }
.colophon__brand { color: var(--gold); font-weight: 700; }
.colophon__contact { margin: 6px 0 0; }
.colophon__contact .btn-link { font-size: 12px; }

/* ================================================================== */
/* 15. Closure popup (§6)                                             */
/* ================================================================== */
.popup { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; }
.popup[hidden] { display: none; }
.popup__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.popup__card {
	position: relative;
	background: var(--white);
	max-width: 560px;
	width: 92%;
	padding: 54px 48px 64px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
/* Circled close control at the card's bottom-right (matches live). */
.popup__close {
	position: absolute;
	right: 18px; bottom: 16px;
	width: 34px; height: 34px;
	border: 1px solid var(--ink);
	border-radius: 50%;
	background: transparent;
	color: var(--ink);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, color .2s ease;
}
.popup__close:hover { background: var(--ink); color: var(--white); }
.popup__close .icon { width: 16px; height: 16px; }
.popup__text {
	margin: 0;
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 22px;
	line-height: 1.5;
	color: var(--ink);
}
.popup__text a { color: var(--gold); text-transform: none; letter-spacing: 0; font-weight: 400; }

/* ================================================================== */
/* 16. Responsive — mobile nav (≤980px)                              */
/* ================================================================== */
@media (max-width: 980px) {
	.site-logo__img { width: 190px; }
	.nav-trigger { display: flex; }

	.navigation--main {
		position: fixed;
		top: 0; right: 0;
		height: 100vh;
		width: min(86vw, 360px);
		background: var(--white);
		box-shadow: -8px 0 30px rgba(0,0,0,.2);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 90px 30px 40px;
		transform: translateX(100%);
		transition: transform .3s ease;
		overflow-y: auto;
		z-index: 55;
	}
	body.nav-open .navigation--main { transform: translateX(0); }

	.nav--main { flex-direction: column; align-items: stretch; gap: 0; }
	.nav--main > li { border-bottom: 1px solid #eee; }
	.nav--main > li > a { color: var(--ink) !important; display: block; padding: 16px 0; font-size: 17px; }

	/* Mobile submenu accordion — collapsed until the parent is tapped open. */
	.sub-menu {
		position: static;
		opacity: 1; visibility: visible; transform: none;
		box-shadow: none;
		max-height: 0; overflow: hidden; padding: 0;
		transition: max-height .3s ease;
	}
	.nav--main > li.is-open > .sub-menu { max-height: 320px; padding-bottom: 8px; }
	.sub-menu a { padding: 12px 16px; }

	.nav--social { padding-top: 22px; }
	.nav--social a { color: var(--ink) !important; }

	/* Keep the hamburger visible/legible while the sheet is open. */
	body.nav-open.header-inversed .site-header:not(.is-solid) .nav-trigger__bar { background: var(--ink); }

	.hero { height: 88vh; }
	.script--hero { font-size: 66px; }
	.display--hero { font-size: 34px; letter-spacing: 8px; }
	.script { font-size: 68px; }        /* in-page script scales down on phones */
	.display { font-size: 28px; letter-spacing: 5px; }
	.parallax { background-attachment: scroll; }
	.blog-head { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 600px) {
	.section { padding: 48px 0; }
	.alt { padding: 44px 0; }
	.banner { min-height: 46vh; }
	.awards__inner { grid-template-columns: 1fr; }
	.tiles { grid-template-columns: 1fr; }
}

/* Accessibility: honor reduced-motion. */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.hero__slide { transition: none; }
}
