/* ==========================================================================
   Nailstop & Beauty — main stylesheet
   Modern, light, simple nail salon & beauty bar. Mobile-first.
   Palette matches the salon's own printed price list: cream + deep wine/
   burgundy + sage green, with a soft blush accent from the salon photos.
   ========================================================================== */

/* ---------- 1. Brand tokens ---------- */
:root {
	/* Palette — cream, deep wine/burgundy, sage green, soft blush.
	   No blue/purple/neon: keeps the "modern, simple, matches the menu" brief. */
	--cream: #F5E8E0;        /* warm blush-cream tile bg */
	--cream-light: #FDF8F4;  /* main page background */
	--ink: #2A1418;          /* near-black wine-ink — headings, dark sections, footer */
	--ink-soft: #4E3438;     /* secondary ink — body copy on light bg */
	--sage: #6E7B52;         /* muted sage green — kickers, labels, script accents */
	--wine: #74212F;         /* deep wine/burgundy — CTAs (Book Now), price, rules */
	--soft-white: #FFFFFF;   /* card background */
	--sage-dark: #4B5738;    /* deeper sage — icon rings, small variance */
	--blush: #D98A93;        /* soft blush pink — badges, gentle highlights */

	--font-head: "Playfair Display", Georgia, serif;
	--font-body: "Poppins", "Segoe UI", Arial, sans-serif;

	--radius: 10px;
	--radius-sm: 6px;
	--shadow: 0 4px 16px rgba(42, 20, 24, 0.08);
	--shadow-lg: 0 20px 50px rgba(42, 20, 24, 0.18);
	--container: 1180px;
	--tracking: 0.14em;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--ink-soft);
	background: var(--cream-light);
	-webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

h1, h2, h3, h4 {
	font-family: var(--font-head);
	font-weight: 600;
	line-height: 1.15;
	color: var(--ink);
	margin: 0 0 0.5em;
	letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 4.2vw, 2.6rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 700; font-family: var(--font-body); }

/* Small tracked-out eyebrow label, used above section headings */
.eyebrow {
	display: block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.74rem;
	letter-spacing: var(--tracking);
	text-transform: uppercase;
	color: var(--sage);
	margin-bottom: 0.9rem;
}

p { margin: 0 0 1em; }

a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--wine); }

address { font-style: normal; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link {
	position: absolute; left: -9999px; top: 0;
	background: var(--ink); color: var(--soft-white);
	padding: 0.6em 1em; z-index: 999;
}
.skip-link:focus { left: 0; }

:focus-visible {
	outline: 3px solid var(--wine);
	outline-offset: 2px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
}

/* ---------- 3. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 760px; }

.section { padding: 4.5rem 0; background: var(--cream-light); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); }

.section-head { text-align: center; margin-bottom: 1.5rem; }
.section-title { text-align: center; position: relative; padding-bottom: 1.1rem; margin-bottom: 0; }
.section-title::after {
	content: "";
	position: absolute; left: 50%; bottom: 0;
	transform: translateX(-50%);
	width: 40px; height: 1px;
	background: var(--wine);
}
.section-title--light { color: var(--soft-white); }
.section-title--light::after { background: var(--wine); }
.section-sub { text-align: center; max-width: 560px; margin: 1.25rem auto 2.75rem; color: var(--ink-soft); font-size: 1.02rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }

.grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 600px) {
	.grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
	.grid-3 { grid-template-columns: repeat(3, 1fr); }
	.grid-4 { grid-template-columns: repeat(4, 1fr); }
	.grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ---------- 4. Buttons — friendly rounded pills, modern & simple (not fine-dining rectangles) ---------- */
.btn {
	display: inline-block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.02em;
	text-decoration: none;
	text-align: center;
	padding: 0.85em 1.9em;
	border-radius: 999px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: none; }
.btn--lg { padding: 1em 2.3em; font-size: 0.92rem; }

/* Primary "Book Now" style — wine fill, always readable (solid, not outline-first). */
.btn--wine { background: var(--wine); color: var(--soft-white); border-color: var(--wine); }
.btn--wine:hover { background: #5C1723; border-color: #5C1723; color: var(--soft-white); }
/* On dark sections, lighten the fill slightly so it still pops off a wine/ink background. */
.section--ink .btn--wine,
.cta-banner .btn--wine,
.mobile-bar .btn--wine,
.page-hero .btn--wine,
.site-footer .btn--wine { background: var(--blush); border-color: var(--blush); color: var(--ink); }
.section--ink .btn--wine:hover,
.cta-banner .btn--wine:hover,
.mobile-bar .btn--wine:hover,
.page-hero .btn--wine:hover,
.site-footer .btn--wine:hover { background: var(--soft-white); border-color: var(--soft-white); color: var(--ink); }

.btn--ink { background: var(--ink); color: var(--soft-white); border-color: var(--ink); }
.btn--ink:hover { background: transparent; color: var(--ink); }
/* On the dark footer, an ink-on-ink button would vanish — outline it in white instead. */
.site-footer .btn--ink { background: transparent; border-color: rgba(255,255,255,0.5); color: var(--soft-white); }
.site-footer .btn--ink:hover { background: rgba(255,255,255,0.12); color: var(--soft-white); }

.btn--blush { background: transparent; color: var(--blush); border-color: var(--blush); }
.btn--blush:hover { background: var(--blush); color: var(--soft-white); }

.btn--outline { background: transparent; color: var(--ink); border-color: rgba(42, 20, 24, 0.4); }
.btn--outline:hover { background: var(--ink); color: var(--soft-white); border-color: var(--ink); }

.btn--outline-light { background: transparent; color: var(--soft-white); border-color: rgba(255,255,255,0.55); }
.btn--outline-light:hover { background: var(--soft-white); color: var(--ink); border-color: var(--soft-white); }

/* Solid variant for the hero, reserved for the single primary action */
.btn--solid-light { background: var(--soft-white); color: var(--ink); border-color: var(--soft-white); }
.btn--solid-light:hover { background: transparent; color: var(--soft-white); border-color: rgba(255,255,255,0.7); }

/* ---------- 5. Header (light, modern, sticky) ---------- */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: rgba(250, 246, 239, 0.92);
	-webkit-backdrop-filter: saturate(1.2) blur(10px);
	backdrop-filter: saturate(1.2) blur(10px);
	border-bottom: 1px solid rgba(42, 20, 24, 0.08);
}
.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 1rem; min-height: 68px; padding-top: 0.5rem; padding-bottom: 0.5rem;
}

.site-branding .custom-logo { max-height: 52px; width: auto; }
.site-title {
	font-family: var(--font-head);
	font-size: 1.35rem;
	font-weight: 600;
	color: var(--ink);
	text-decoration: none;
	letter-spacing: 0.01em;
}
.site-title span { color: var(--wine); font-weight: 400; }

.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.nav-list { list-style: none; display: flex; gap: 0.5rem; margin: 0; padding: 0; }
.nav-list a {
	display: block;
	position: relative;
	color: var(--ink);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.76rem;
	letter-spacing: var(--tracking);
	text-transform: uppercase;
	padding: 0.5em 0.75em;
}
.nav-list a::after {
	content: "";
	position: absolute; left: 0.75em; right: 0.75em; bottom: 0.25em;
	height: 1px; background: var(--wine);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.25s ease;
}
.nav-list a:hover::after,
.nav-list .current-menu-item > a::after,
.nav-list .current_page_item > a::after { transform: scaleX(1); }

.header-call { white-space: nowrap; }

.nav-toggle {
	display: none;
	background: none; border: 0; padding: 0.75rem; cursor: pointer;
}
.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
	content: ""; display: block;
	width: 24px; height: 2px; border-radius: 2px;
	background: var(--ink);
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle-bar { position: relative; }
.nav-toggle-bar::before { position: absolute; top: -8px; }
.nav-toggle-bar::after { position: absolute; top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 820px) {
	.nav-toggle { display: block; }
	.site-nav {
		position: absolute; left: 0; right: 0; top: 100%;
		flex-direction: column; align-items: stretch;
		background: var(--cream-light);
		padding: 1rem 1.25rem 1.5rem;
		display: none;
		box-shadow: 0 14px 24px rgba(42, 20, 24, 0.1);
		border-bottom: 1px solid rgba(42, 20, 24, 0.08);
	}
	.site-nav.is-open { display: flex; }
	.nav-list { flex-direction: column; }
	.nav-list a { padding: 0.85em 1em; font-size: 0.8rem; }
	.header-call { text-align: center; }
}

/* ---------- 6. Hero — full-page banner, bright & modern (matches menu tone) ---------- */
.hero {
	position: relative;
	min-height: 88vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	/* Fallback gradient (no photo uploaded yet) — cream to soft blush to wine,
	   so the banner still looks finished and on-brand before a photo is added. */
	background: linear-gradient(160deg, #F5E8E0 0%, #E3B3AE 55%, #9A3D4A 100%);
	background-size: cover;
	background-position: center;
	color: var(--soft-white);
	padding: 6.5rem 0 4.5rem;
}
/* Soft wine scrim — lighter than a fine-dining hero, keeps photos bright while text stays legible */
.hero::before {
	content: "";
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(42,20,24,0.38) 0%, rgba(42,20,24,0.28) 45%, rgba(42,20,24,0.62) 100%);
}
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; max-width: 760px; margin: 0 auto; }

.hero-kicker {
	font-weight: 600; letter-spacing: var(--tracking); text-transform: uppercase;
	font-size: 0.78rem; color: var(--blush); margin-bottom: 1.5rem;
}
.hero h1 {
	margin-bottom: 0.5em;
	color: var(--soft-white);
	font-weight: 600;
}
.hero-rule { width: 56px; height: 3px; border-radius: 2px; background: var(--blush); margin: 0.4rem auto 1.6rem; }
.hero-sub { font-size: 1.1rem; max-width: 36em; color: rgba(255,255,255,0.9); margin-left: auto; margin-right: auto; }

/* Highlighter effect for *words* in headings — blush on dark, wine on light */
.hl { color: var(--blush); font-style: italic; }

.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2.25rem; }
@media (max-width: 599px) {
	.hero-ctas .btn { flex: 1 1 100%; }
}

.hero-trust {
	list-style: none;
	display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 1.1rem;
	margin: 2.75rem 0 0; padding: 1.4rem 0 0;
	border-top: 1px solid rgba(255,255,255,0.25);
	font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
	color: rgba(255,255,255,0.85);
}
.hero-trust li:not(:last-child)::after { content: "·"; margin-left: 1.1rem; color: var(--blush); }

/* Scroll cue */
.hero-scroll {
	position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
	z-index: 1; width: 22px; height: 34px;
	border: 1px solid rgba(255,255,255,0.6); border-radius: 12px;
}
.hero-scroll::before {
	content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px;
	background: var(--blush); border-radius: 2px; transform: translateX(-50%);
	animation: hve-scroll-cue 2s ease infinite;
}
@keyframes hve-scroll-cue { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 18px; } 100% { opacity: 0; top: 6px; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll::before { animation: none; } }
@media (max-width: 700px) { .hero-scroll { display: none; } }

@media (max-width: 700px) { .hero { min-height: 96vh; padding: 6rem 0 4rem; } }

/* Inner page hero */
.page-hero {
	background: var(--ink);
	color: var(--soft-white);
	text-align: center;
	padding: 5.5rem 0 4rem;
}
.page-hero h1 { color: var(--soft-white); }
.page-hero .hero-sub { margin: 0 auto; color: rgba(255,255,255,0.75); }

/* ---------- Marquee strip ---------- */
.marquee { background: var(--ink); overflow: hidden; padding: 0.7rem 0; }
.marquee-track { display: flex; width: max-content; animation: hve-marquee 28s linear infinite; }
.marquee-track span {
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 0.98rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--wine);
	white-space: nowrap;
	padding-right: 2.5rem;
}
@keyframes hve-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- 7. Category tiles (image-heavy) ---------- */
.cat-tile {
	position: relative;
	display: flex; align-items: flex-end;
	min-height: 400px;
	overflow: hidden;
	text-decoration: none;
	background: linear-gradient(150deg, var(--ink), #4A121D);
	background-size: cover;
	background-position: center;
	transition: transform 0.4s ease;
}
.cat-tile:hover .cat-tile-text::after { transform: scaleX(1); }
.cat-tile:hover .item-media img,
.cat-tile:hover { transform: none; }
.cat-tile::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(0deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.02) 55%);
	transition: background 0.3s ease;
}
.cat-tile--photo .cat-tile-icon { display: none; }
.cat-tile-icon {
	position: absolute; top: 1.3rem; left: 1.3rem;
	font-size: 1.5rem; opacity: 0.9;
}
.cat-tile-text { position: relative; padding: 1.6rem 1.6rem 1.8rem; color: var(--soft-white); width: 100%; }
.cat-tile-name {
	display: block; font-family: var(--font-head); font-size: 1.35rem; font-weight: 500;
	letter-spacing: 0.02em;
}
.cat-tile-text::after {
	content: ""; display: block; width: 32px; height: 1px; background: var(--wine);
	margin: 0.6rem 0; transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.cat-tile-desc { display: block; font-size: 0.86rem; letter-spacing: 0.03em; opacity: 0.8; }

/* ---------- Our Story ---------- */
.story-section { color: var(--soft-white); }
.story-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 860px) { .story-grid { grid-template-columns: 0.85fr 1.15fr; } }
.story-media {
	aspect-ratio: 4 / 3;
	border-radius: var(--radius);
	overflow: hidden;
	background: linear-gradient(150deg, var(--ink), var(--sage));
	display: flex; align-items: center; justify-content: center;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }
.story-emoji { font-size: 4.5rem; }
.story-copy p { font-size: 1.08rem; color: rgba(255,255,255,0.85); max-width: 42em; }
.story-copy .btn { margin-top: 0.5rem; }

/* ---------- 8. Item cards (popular treatments, previews, archives) ---------- */
.item-card {
	background: var(--soft-white);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid rgba(42, 20, 24, 0.08);
	display: flex; flex-direction: column;
}
.item-media { position: relative; display: block; overflow: hidden; }
.item-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.35s ease; }
.item-card:hover .item-media img { transform: scale(1.05); }

.item-ph {
	aspect-ratio: 4 / 3;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, var(--cream) 0%, var(--cream-light) 100%);
}
.item-ph span {
	font-family: var(--font-head);
	font-size: 2.4rem;
	color: var(--sage);
	background: var(--soft-white);
	width: 74px; height: 74px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	border: 2px solid var(--wine);
}

.item-body { padding: 1.1rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: 0.3rem; }
.item-cat {
	font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--sage-dark); margin: 0;
}
.item-name { font-size: 1.12rem; margin: 0; font-family: var(--font-head); font-weight: 700; }
.item-name a { text-decoration: none; color: inherit; }
.item-desc { font-size: 0.94rem; color: var(--ink-soft); margin: 0; }
.item-price { margin: 0.45rem 0 0; }

.price { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--wine); }

.badge {
	display: inline-block;
	font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
	background: rgba(42, 20, 24, 0.78);
	color: var(--soft-white);
	padding: 0.35em 0.85em; border-radius: 999px;
	border: 1px solid rgba(217, 138, 147, 0.6);
	vertical-align: middle;
}
/* Light, high-contrast tints so each badge stays readable on the dark chip background. */
.badge--popular { color: #E7A8AE; }
.badge--new { color: #A8C08C; }
.badge--best { color: #E3B36B; }
.item-media .badge { position: absolute; top: 12px; left: 12px; }
.item-name .badge { margin-left: 0.5em; background: transparent; border-color: currentColor; }

@media (max-width: 599px) {
	.item-grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 1rem;
		margin: 0 -1.25rem;
		padding: 0.25rem 1.25rem 0.9rem;
		-webkit-overflow-scrolling: touch;
	}
	.item-grid > * { flex: 0 0 78%; scroll-snap-align: center; }
}

/* ---------- 9. Why guests choose us ---------- */
.why-section { background: var(--cream-light); }
.why-grid { margin-top: 2.25rem; }
.why-card {
	background: var(--soft-white);
	border-radius: var(--radius);
	padding: 1.75rem 1.25rem;
	text-align: center;
	box-shadow: var(--shadow);
}
.why-card p { margin: 0; font-weight: 600; color: var(--ink); }
.why-icon {
	display: flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; margin: 0 auto 1rem;
	background: transparent;
	border: 1px solid var(--wine);
	border-radius: 50%;
	font-size: 1.35rem;
}
.why-card { border: 1px solid rgba(42,20,24,0.08); box-shadow: none; }

/* ---------- 10. Visit us ---------- */
.visit-grid { display: grid; gap: 2.25rem; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1fr 1.2fr; } }

.visit-info h3 {
	font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
	font-family: var(--font-body); font-weight: 700;
	color: var(--sage);
	margin: 1.4rem 0 0.3rem;
}
.visit-info h3:first-of-type { margin-top: 0; }
.visit-info a { font-weight: 600; }

.visit-map iframe { width: 100%; min-height: 360px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- 11. Gallery ---------- */
.gallery-grid { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid img,
.gallery-ph {
	width: 100%; aspect-ratio: 1;
	border-radius: var(--radius-sm);
	object-fit: cover;
}
.gallery-ph {
	display: flex; align-items: center; justify-content: center;
	font-size: 2.4rem;
	background: linear-gradient(150deg, var(--cream-light), var(--cream));
}

/* ---------- 12. Menu page ---------- */
.menu-search { max-width: 480px; margin: 0 auto 2rem; }
.menu-search input {
	width: 100%;
	font: inherit;
	padding: 0.8em 1.3em;
	border: 1.5px solid rgba(42, 20, 24, 0.18);
	border-radius: 999px;
	background: var(--soft-white);
	color: var(--ink);
}
.menu-search input::placeholder { color: var(--sage); }

.menu-pills {
	display: flex; gap: 0.5rem; flex-wrap: nowrap; overflow-x: auto;
	padding: 0.25rem 0 0.75rem; margin-bottom: 2rem;
	-webkit-overflow-scrolling: touch;
}
@media (min-width: 900px) { .menu-pills { flex-wrap: wrap; justify-content: center; overflow: visible; } }
.menu-pill {
	flex: 0 0 auto;
	font: inherit; font-weight: 600; font-size: 0.9rem;
	background: var(--soft-white);
	color: var(--ink-soft);
	border: 1.5px solid rgba(42, 20, 24, 0.15);
	border-radius: 999px;
	padding: 0.45em 1.15em;
	cursor: pointer;
}
.menu-pill:hover { background: var(--cream); }
.menu-pill.is-active { background: var(--ink); border-color: var(--ink); color: var(--blush); }

.menu-group { display: none; }
.menu-group.is-active { display: block; }

.menu-cat { margin-bottom: 3rem; }
.menu-cat-title {
	display: flex; align-items: center; gap: 0.75rem;
	font-size: 1.5rem;
	color: var(--ink);
	margin-bottom: 1.35rem;
}
.menu-cat-title::after { content: ""; flex: 1; height: 1px; background: rgba(42, 20, 24, 0.15); }
.cat-emoji {
	flex: 0 0 auto;
	width: 42px; height: 42px;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: 1.25rem; line-height: 1;
	background: var(--cream);
	border-radius: 50%;
}

.item-ph--emoji span { font-size: 2.2rem; }

.menu-empty { text-align: center; color: var(--ink-soft); font-weight: 600; padding: 2rem 0; }

.menu-cta {
	margin-top: 3rem;
	text-align: center;
	background: var(--cream);
	border-radius: var(--radius);
	padding: 2.25rem 1.25rem;
}
.menu-cta p { font-family: var(--font-head); font-size: 1.25rem; margin-bottom: 1.1rem; }
.menu-cta .btn { margin: 0.25rem; }

/* ---------- 13. Content / blog ---------- */
.entry-content { font-size: 1.05rem; }
.entry-content h2, .entry-content h3 { margin-top: 1.5em; }
.entry-thumb img { border-radius: var(--radius); }
.post-meta { color: var(--sage); font-weight: 600; font-size: 0.9rem; }
.single-item-img img { border-radius: var(--radius); margin-bottom: 1rem; }
.pagination { text-align: center; margin-top: 2rem; }
.pagination .page-numbers {
	display: inline-block; padding: 0.4em 0.9em; margin: 0 2px;
	background: var(--cream); border-radius: 999px;
	text-decoration: none; font-weight: 600;
}
.pagination .page-numbers.current { background: var(--wine); color: var(--soft-white); }

.alignwide { margin-left: -2rem; margin-right: -2rem; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }
.wp-block-image img { border-radius: var(--radius-sm); }

/* ---------- 14. Bottom CTA banner ---------- */
.cta-banner-wrap { padding-top: 0; }
.cta-banner {
	position: relative;
	background: var(--ink);
	border: 1px solid rgba(198, 161, 91, 0.3);
	padding: 4rem 1.5rem;
	text-align: center;
}
.cta-banner h2 { color: var(--soft-white); font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.5em; }
.cta-banner h2 .hl { color: var(--wine); }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 34em; margin: 0 auto 1.6rem; }
.cta-banner .hero-ctas { justify-content: center; margin-top: 0; }

/* ---------- 15. Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); }
.footer-grid { display: grid; gap: 2.25rem; padding-top: 3.5rem; padding-bottom: 2.5rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 0.8fr; } }

.footer-logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--soft-white); margin-bottom: 0.3rem; }
.footer-logo span { color: var(--wine); font-weight: 500; }
.footer-tag { color: var(--sage); font-size: 0.92rem; }

.footer-title {
	font-family: var(--font-body); font-weight: 700;
	font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
	color: var(--wine); margin-bottom: 0.85rem;
}
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--wine); }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a { text-decoration: none; font-weight: 600; }

.footer-social { display: flex; gap: 0.55rem; margin-top: 1rem; }
.footer-social a {
	width: 36px; height: 36px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	color: rgba(255,255,255,0.85);
	background: rgba(255,255,255,0.06);
	border: 1.5px solid rgba(198, 161, 91, 0.4);
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.footer-social a:hover { background: var(--wine); color: var(--soft-white); transform: translateY(-2px); }
.footer-social svg { fill: currentColor; display: block; }

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 1.1rem 0;
	font-size: 0.88rem;
	color: rgba(255,255,255,0.55);
}
.footer-bottom p { margin: 0; text-align: center; }
.footer-credit { margin-top: 0.35rem !important; font-size: 0.85rem; }
.footer-credit a { color: var(--wine); font-weight: 600; text-decoration: none; }
.footer-credit a:hover { text-decoration: underline; }

/* ---------- 16. Mobile sticky action bar ---------- */
.mobile-bar {
	position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
	display: flex; gap: 0.6rem;
	padding: 0.6rem 0.9rem calc(0.6rem + env(safe-area-inset-bottom));
	background: rgba(42, 20, 24, 0.97);
	box-shadow: 0 -4px 14px rgba(42, 20, 24, 0.3);
}
.mobile-bar .btn { flex: 1; }
.mobile-bar .btn--ink { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--soft-white); }
.mobile-bar .btn--ink:hover { background: rgba(255,255,255,0.12); }
body { padding-bottom: 0; }
@media (max-width: 819px) { body { padding-bottom: 72px; } }
@media (min-width: 820px) { .mobile-bar { display: none; } }

/* ---------- Scroll reveal (classes added by JS only) ---------- */
.will-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.will-reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .will-reveal { opacity: 1; transform: none; transition: none; } }
