/* =====================================================================
   The Jib Room — "Island Press" design layer
   A vintage-Bahamian screenprint / travel-poster identity for the
   restaurant & bar: sun-bleached paper, sea-foam teal + palm green,
   sun gold, sunset coral; Alfa Slab One poster type, Hanken Grotesk
   body, a Yellowtail island-sign script. Grain + halftone texture,
   hard "sticker" shadows, ticket-stub cards, postmark stamps.
   Scoped to the front end; targets stable WP/Blocksy classes only.
   ===================================================================== */

/* Shared, non-color tokens (type, shadows, radius). Refined: Fraunces display,
   Hanken Grotesk body, soft elevation shadows (no hard "sticker" offsets). */
:root {
	--jr-display: "Fraunces", "Fraunces Fallback", Georgia, "Times New Roman", serif;
	--jr-head:    "Hanken Grotesk", "Hanken Grotesk Fallback", "Segoe UI", system-ui, sans-serif;
	--jr-body:    "Hanken Grotesk", "Hanken Grotesk Fallback", "Segoe UI", system-ui, sans-serif;
	--jr-script:  "Fraunces", "Fraunces Fallback", Georgia, serif;  /* used italic for the tagline */

	--jr-hard:      0 8px 22px rgba(18,40,34,.13);   /* (legacy name) now soft */
	--jr-hard-sm:   0 3px 10px rgba(18,40,34,.10);
	--jr-shadow:    0 16px 34px rgba(18,40,34,.16);
	--jr-shadow-sm: 0 4px 12px rgba(18,40,34,.09);

	--jr-radius: 9px;
}

/* ---- Palette themes (one dominant + warm neutral + single accent) ----
   Switchable live via <html data-jr-theme="…">. Harbour is the default. */
:root,
:root[data-jr-theme="harbour"] {
	--jr-paper:    #f4ecdd;  /* warm sand (base) */
	--jr-paper-2:  #eaddc2;  /* deeper sand band */
	--jr-ink:      #13312b;  /* deep teal-ink */
	--jr-ink-soft: #46584f;
	--jr-teal:     #0e5a4e;  /* HERO — deep teal-green (dominant) */
	--jr-teal-deep:#0a3f36;
	--jr-green:    #0e5a4e;  /* hero (unified) */
	--jr-green-deep:#0a3f36;
	--jr-gold:     #c98a2e;  /* brass accent */
	--jr-coral:    #c5512f;  /* terracotta — warm pop / CTA (used sparingly) */
	--jr-coral-2:  #a8421f;
	--jr-line:     #e1d4b8;  /* sand keyline */
	--jr-night:    #0c3a33;  /* dark band */
	--jr-night-2:  #082822;
	--jr-sand-tx:  #f3e9d2;
}
/* (Conch & Pine preview palettes removed — Harbour is the chosen palette.) */

/* ---------------------------------------------------------------------
   0. Paper + grain atmosphere
   --------------------------------------------------------------------- */
body.wp-theme-blocksy {
	font-family: var(--jr-body);
	color: var(--jr-ink);
	background-color: var(--jr-paper);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
/* Fixed paper grain across the whole page (subtle, multiply). */
body.wp-theme-blocksy::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 9998;
	pointer-events: none;
	mix-blend-mode: multiply;
	opacity: .025;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------------------------------------------
   1. Typography
   --------------------------------------------------------------------- */
.wp-theme-blocksy .entry-content {
	font-size: 1.075rem;
	line-height: 1.7;
	color: var(--jr-ink-soft);
}
.wp-theme-blocksy h1,
.wp-theme-blocksy h2 {
	font-family: var(--jr-display);
	color: var(--jr-ink);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.01em;
}
.wp-theme-blocksy h3,
.wp-theme-blocksy h4 {
	font-family: var(--jr-head);
	color: var(--jr-ink);
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.15;
}
.wp-theme-blocksy .entry-content h2 {
	font-size: clamp(1.7rem, 1.1rem + 2.2vw, 2.75rem);
	margin-bottom: .5em;
}
.wp-theme-blocksy .entry-content h3 {
	font-size: clamp(1.15rem, 1rem + .6vw, 1.45rem);
}
.wp-theme-blocksy .has-xx-large-font-size { font-size: clamp(2.4rem, 1.4rem + 3.6vw, 4rem) !important; }
.wp-theme-blocksy strong { color: var(--jr-ink); }

/* Content links: gold highlighter sweep */
.wp-theme-blocksy .entry-content a:not(.wp-block-button__link):not(.jr-docs a):not(.jr-marquee__item) {
	color: var(--jr-teal-deep);
	text-decoration: none;
	font-weight: 700;
	background-image: linear-gradient(var(--jr-gold), var(--jr-gold));
	background-size: 0% 35%;
	background-repeat: no-repeat;
	background-position: 0 88%;
	transition: background-size .25s ease, color .2s ease;
}
.wp-theme-blocksy .entry-content a:not(.wp-block-button__link):not(.jr-docs a):not(.jr-marquee__item):hover {
	color: var(--jr-ink);
	background-size: 100% 35%;
}

/* Eyebrow — letter-spaced caps with a gold rule */
.wp-theme-blocksy .jr-eyebrow {
	font-family: var(--jr-head) !important;
	font-size: .8rem !important;
	font-weight: 800;
	letter-spacing: .2em !important;
	text-transform: uppercase;
	color: var(--jr-gold) !important;
	display: inline-flex;
	align-items: center;
	gap: .7em;
	margin-bottom: 1rem;
}
.wp-theme-blocksy .jr-eyebrow::before {
	content: "";
	width: 1.9rem; height: 3px;
	background: var(--jr-gold);
	display: inline-block;
}
.wp-theme-blocksy .jr-eyebrow--on-dark { color: var(--jr-gold) !important; }

.wp-theme-blocksy .jr-lead {
	font-size: 1.2rem;
	line-height: 1.6;
	max-width: 56ch;
	margin: 0 0 1.5rem;
	color: var(--jr-ink-soft);
}

/* Section header (eyebrow + title + intro) — left-aligned, sharing the same
   content column as the section content below it. */
.wp-theme-blocksy .jr-heading { margin-bottom: 2.25rem; }
.wp-theme-blocksy .jr-heading h1,
.wp-theme-blocksy .jr-heading h2 { margin: 0; }
.wp-theme-blocksy .jr-heading__body {
	max-width: 70ch;
	margin: .8rem 0 0;
	font-size: 1.12rem;
	line-height: 1.6;
	color: var(--jr-ink-soft);
}
.wp-theme-blocksy .jr-script {
	font-family: var(--jr-script);
	font-style: italic;
	color: var(--jr-coral);
	font-weight: 500;
	line-height: 1.1;
}

/* ---------------------------------------------------------------------
   2. Marquee strip (injected via wp_body_open)
   --------------------------------------------------------------------- */
.jr-marquee {
	background: var(--jr-ink);
	color: var(--jr-paper);
	overflow: hidden;
	border-bottom: 3px solid var(--jr-gold);
}
.jr-marquee__track {
	display: inline-flex;
	white-space: nowrap;
	will-change: transform;
	animation: jr-marquee 38s linear infinite;
}
.jr-marquee:hover .jr-marquee__track { animation-play-state: paused; }
.jr-marquee__seq { display: inline-flex; align-items: center; }
.jr-marquee__item {
	font-family: var(--jr-head);
	font-weight: 700;
	font-size: .82rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	padding: .55rem 0;
	color: var(--jr-paper);
	text-decoration: none;
}
.jr-marquee__item--strong { color: var(--jr-gold); }
.jr-marquee__item--link { color: var(--jr-gold); }
.jr-marquee__item--link:hover { color: #fff; text-decoration: underline; }
.jr-marquee__star { color: var(--jr-coral); margin: 0 1.15rem; font-size: .7rem; }
@keyframes jr-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------------------------------------------------------------
   3. Header + navigation (Blocksy)
   --------------------------------------------------------------------- */
.ct-header {
	background: var(--jr-paper);
	box-shadow: none;
	border-bottom: 4px solid var(--jr-ink);
}
/* ---------------------------------------------------------------------
   Header lockup — small crest badge + wordmark ("The Jib Room").
   The full color crest is a busy heritage mark, so the bar leads with the
   NAME (Fraunces) and keeps the crest small beside it; the big crest lives
   in the hero + footer. Both Blocksy header rows (desktop + mobile) carry
   the logo <img> and the .site-title text, so one rule set covers both.
   --------------------------------------------------------------------- */
.ct-header [data-id="logo"] { display: flex; align-items: center; }
.ct-header .site-branding[data-id="logo"] {
	display: flex !important;
	flex-direction: row !important;
	align-items: center;
	gap: .85rem;
}
.ct-header .site-logo-container { display: inline-flex; align-items: center; line-height: 0; flex: 0 0 auto; }
.ct-header .site-logo-container img,
.ct-header .site-logo-container img.default-logo {
	display: block;
	max-height: 68px !important;
	width: auto !important;
	height: auto !important;
}

/* Wordmark — the site title, revealed and set as the lockup's name. */
.ct-header .site-title-container {
	position: static !important;
	width: auto; height: auto; margin: 0; padding: 0;
	overflow: visible; clip: auto;
	display: flex; flex-direction: column; line-height: 1;
}
.ct-header .site-title { margin: 0; display: block; }
.ct-header .site-title a {
	font-family: var(--jr-display);
	font-weight: 600;
	font-size: 1.6rem;
	letter-spacing: -.01em;
	line-height: .98;
	color: var(--jr-ink);
	text-decoration: none;
	white-space: nowrap;
}
/* sub-label beneath the name */
.ct-header .site-title-container::after {
	content: "Restaurant & Bar";
	font-family: var(--jr-head);
	font-weight: 700;
	font-size: .58rem;
	letter-spacing: .26em;
	text-transform: uppercase;
	color: var(--jr-ink-soft);
	margin-top: .3rem;
}
/* tagline (if Blocksy outputs one) stays hidden. */
.ct-header .site-description {
	position: absolute !important;
	width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Mobile header (Blocksy's ~70px row, <=1000px): smaller crest + name. */
@media (max-width: 999.98px) {
	.ct-header .site-logo-container img,
	.ct-header .site-logo-container img.default-logo { max-height: 48px !important; }
	.ct-header .site-branding[data-id="logo"] { gap: .6rem; }
	.ct-header .site-title a { font-size: 1.18rem; }
	.ct-header .site-title-container::after { content: "Restaurant"; font-size: .5rem; letter-spacing: .2em; }
}
.ct-header .ct-menu-link {
	font-family: var(--jr-head);
	font-weight: 800;
	font-size: .82rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--jr-ink);
	position: relative;
}
.ct-header .menu-item > .ct-menu-link::after {
	content: "";
	position: absolute;
	left: var(--jr-link-pad, .8rem); right: var(--jr-link-pad, .8rem);
	bottom: .3rem; height: 4px;
	background: var(--jr-coral);
	transform: scaleX(0); transform-origin: left;
	transition: transform .25s ease;
	border-radius: 2px;
}
.ct-header .menu-item:hover > .ct-menu-link::after,
.ct-header .current-menu-item > .ct-menu-link::after { transform: scaleX(1); }
.ct-header .current-menu-item > .ct-menu-link { color: var(--jr-coral-2); }

#offcanvas, #offcanvas .ct-panel-inner { background-color: var(--jr-paper) !important; }
#offcanvas .ct-panel-content-inner { padding: 0 1.25rem 1.5rem; }
#offcanvas .ct-toggle-close { color: var(--jr-ink); }
#offcanvas .ct-menu-link {
	color: var(--jr-ink); font-family: var(--jr-head); font-weight: 800;
	text-transform: uppercase; letter-spacing: .1em; padding: 1rem 0;
}
#offcanvas .menu-container > ul > li.menu-item { border-bottom: 2px dashed var(--jr-line); }
#offcanvas .menu-item > .ct-menu-link::after { display: none !important; }
#offcanvas .current-menu-item > .ct-menu-link { color: var(--jr-coral-2); }

/* Suppress Blocksy's default page-title hero band — every page provides its
   own heading (the poster h1 on the home page, a .jr-band h1 elsewhere). */
.wp-theme-blocksy .hero-section { display: none !important; }

/* ---------------------------------------------------------------------
   4. Section bands + printer's rule divider
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-band { position: relative; }
.wp-theme-blocksy .jr-band h1 {
	font-size: clamp(2rem, 1.3rem + 2.6vw, 3.1rem);
	line-height: 1.05;
	margin-bottom: .45em;
}
/* Give the whole content area ONE consistent width. Blocksy's
   --theme-block-max-width comes through empty here, which otherwise lets narrow
   text sections (~750) and full-bleed bands (~1100) disagree — the cause of the
   "some sections sit further left" look. Pin it so every section matches. */
.wp-theme-blocksy .entry-content { --wp--style--global--content-size: 1120px; }
.wp-theme-blocksy .jr-band { padding-inline: 1.5rem; }
.wp-theme-blocksy .jr-band > *:not(.alignfull) { max-width: 1120px; margin-inline: auto; }
.wp-theme-blocksy .jr-band--sand {
	background: var(--jr-paper-2);
	background-image: radial-gradient(rgba(22,36,30,.05) 1.4px, transparent 1.4px);
	background-size: 18px 18px;
	border-block: 1px solid var(--jr-line);
}
.wp-theme-blocksy .jr-rule {
	display: flex; gap: 8px; justify-content: center; align-items: center;
	padding: 1.1rem 0;
}
.wp-theme-blocksy .jr-rule span { height: 6px; width: 34px; border-radius: 3px; }
.wp-theme-blocksy .jr-rule span:nth-child(1) { background: var(--jr-coral); }
.wp-theme-blocksy .jr-rule span:nth-child(2) { background: var(--jr-gold); }
.wp-theme-blocksy .jr-rule span:nth-child(3) { background: var(--jr-teal); }
.wp-theme-blocksy .jr-rule span:nth-child(4) { background: var(--jr-ink-soft); }

/* ---------------------------------------------------------------------
   5. Poster hero (wp:html)
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-poster {
	position: relative;
	overflow: hidden;
	background: var(--jr-paper-2);
	border-bottom: 1px solid var(--jr-line);
}
.wp-theme-blocksy .jr-poster__sun {
	position: absolute;
	top: 50%; left: 64%;
	width: 150vmax; height: 150vmax;
	transform: translate(-50%, -50%);
	background: repeating-conic-gradient(from 0deg at 50% 50%,
		rgba(201,138,46,.13) 0deg 5deg, transparent 5deg 12deg);
	-webkit-mask: radial-gradient(closest-side, #000 0%, transparent 62%);
	        mask: radial-gradient(closest-side, #000 0%, transparent 62%);
	animation: jr-spin 120s linear infinite;
	pointer-events: none;
}
@keyframes jr-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.wp-theme-blocksy .jr-poster__inner {
	position: relative; z-index: 1;
	max-width: 1180px; margin: 0 auto;
	padding: clamp(2.5rem, 1rem + 5vw, 5rem) 1.5rem;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	align-items: center;
	gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
}
.wp-theme-blocksy .jr-poster__title {
	font-family: var(--jr-display);
	font-size: clamp(2.6rem, 1.4rem + 6vw, 5.2rem);
	font-weight: 600;
	line-height: .98;
	color: var(--jr-ink);
	margin: .05em 0 .12em;
	letter-spacing: -0.015em;
	-webkit-font-smoothing: antialiased;
}
.wp-theme-blocksy .jr-poster__script {
	font-family: var(--jr-script);
	font-size: clamp(1.6rem, 1rem + 2.4vw, 2.6rem);
	color: var(--jr-coral);
	margin: 0 0 1rem;
	transform: rotate(-3deg);
	display: inline-block;
}
.wp-theme-blocksy .jr-poster__photo {
	position: relative;
	background: #fff;
	padding: .8rem .8rem 2.6rem;
	border: 1px solid var(--jr-line);
	box-shadow: var(--jr-shadow);
	transform: rotate(-2.2deg);
	justify-self: center;
}
.wp-theme-blocksy .jr-poster__photo img {
	display: block; width: 100%; height: auto;
	max-width: 460px;
	filter: saturate(1.05) contrast(1.03);
}
.wp-theme-blocksy .jr-poster__photo::before { /* warm print overlay */
	content: ""; position: absolute; inset: .8rem .8rem 2.6rem;
	background: linear-gradient(160deg, rgba(242,180,65,.12), rgba(240,85,45,.16));
	mix-blend-mode: soft-light; pointer-events: none;
}
.wp-theme-blocksy .jr-poster__photo::after { /* tape */
	content: ""; position: absolute; top: -12px; left: 50%;
	width: 92px; height: 26px; transform: translateX(-50%) rotate(-4deg);
	background: rgba(201,138,46,.4);
	box-shadow: 0 1px 4px rgba(22,36,30,.15);
}
.wp-theme-blocksy .jr-poster__cap {
	position: absolute; bottom: .65rem; left: 0; right: 0; text-align: center;
	font-family: var(--jr-script); font-style: italic; color: var(--jr-ink-soft); font-size: 1.15rem;
}
.wp-theme-blocksy .jr-poster .wp-block-buttons { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }
/* Hero crest — the full heritage mark pinned as a "seal" on the pool-deck
   photo (homepage poster only). The figure carries a <span class="jr-poster__seal">;
   crest.png lives beside this file. */
.wp-theme-blocksy.home .jr-poster__photo { overflow: visible; }
.wp-theme-blocksy.home .jr-poster__seal {
	position: absolute;
	top: -40px;
	left: -40px;
	width: clamp(124px, 6vw + 84px, 200px);
	aspect-ratio: 1 / 1;
	z-index: 3;
	background: #fffdf7 url("crest.png") no-repeat center / 82%;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(19, 49, 43, .22);
	transform: rotate(4deg);
}
@media (max-width: 820px) {
	.wp-theme-blocksy .jr-poster__inner { grid-template-columns: 1fr; }
	.wp-theme-blocksy .jr-poster__photo { transform: rotate(-1.5deg); margin-top: 1rem; }
	.wp-theme-blocksy.home .jr-poster__seal { top: -26px; left: -22px; width: clamp(100px, 28vw, 156px); }
}

/* ---------------------------------------------------------------------
   6. Stamp ribbon (postmark badges)
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-stamps {
	display: flex; flex-wrap: wrap; gap: 1.25rem; justify-content: center;
	max-width: 1100px; margin: 0 auto; padding: 0 1.25rem;
}
.wp-theme-blocksy .jr-stamp {
	flex: 1 1 200px; max-width: 250px;
	background: var(--jr-paper);
	border: 1px dashed var(--jr-ink-soft);
	border-radius: 10px;
	padding: 1.1rem 1rem;
	text-align: center;
	position: relative;
}
.wp-theme-blocksy .jr-stamp:nth-child(odd) { transform: rotate(-1.4deg); }
.wp-theme-blocksy .jr-stamp:nth-child(even) { transform: rotate(1.2deg); }
/* Single, calm accent for the stamp icons (no rainbow). */
.wp-theme-blocksy .jr-stamp__icon { color: var(--jr-teal); }
.wp-theme-blocksy .jr-stamp__icon svg { width: 1.7rem; height: 1.7rem; }
.wp-theme-blocksy .jr-stamp__title {
	font-family: var(--jr-head); font-weight: 800; text-transform: uppercase;
	letter-spacing: .04em; color: var(--jr-ink); font-size: 1rem; margin: .35rem 0 .1rem;
}
.wp-theme-blocksy .jr-stamp__sub { font-size: .85rem; color: var(--jr-ink-soft); }

/* ---------------------------------------------------------------------
   7. Ticket feature blocks (photo + color caption, alternating)
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-features { display: flex; flex-direction: column; gap: 2.5rem; max-width: 1100px; margin: 2.5rem auto 0; }
.wp-theme-blocksy .jr-feature {
	display: grid; grid-template-columns: 1fr 1fr; align-items: center;
	gap: clamp(1.25rem, 1rem + 2vw, 3rem);
}
.wp-theme-blocksy .jr-feature--flip { direction: rtl; }
.wp-theme-blocksy .jr-feature--flip > * { direction: ltr; }
.wp-theme-blocksy .jr-feature__photo {
	position: relative; background: #fff; padding: .7rem; border: 1px solid var(--jr-line);
	box-shadow: var(--jr-shadow); transform: rotate(-1.5deg);
}
.wp-theme-blocksy .jr-feature--flip .jr-feature__photo { transform: rotate(1.5deg); }
.wp-theme-blocksy .jr-feature__photo img { display: block; width: 100%; height: 320px; object-fit: cover; }
.wp-theme-blocksy .jr-feature__body h3 { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); margin: .2rem 0 .5rem; }
.wp-theme-blocksy .jr-feature__body p { color: var(--jr-ink-soft); margin: 0 0 1.1rem; }
.wp-theme-blocksy .jr-feature__kicker {
	font-family: var(--jr-head); font-weight: 800; text-transform: uppercase;
	letter-spacing: .16em; font-size: .75rem; color: var(--jr-teal-deep);
}
@media (max-width: 760px) {
	.wp-theme-blocksy .jr-feature, .wp-theme-blocksy .jr-feature--flip { grid-template-columns: 1fr; direction: ltr; }
	.wp-theme-blocksy .jr-feature__photo img { height: 240px; }
}

/* ---------------------------------------------------------------------
   8. Menu — white category cards, masonry columns ([jr_menu])
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-menu {
	column-count: 1; column-gap: 1.6rem; column-fill: balance; margin-top: 2rem;
}
@media (min-width: 700px) {
	.wp-theme-blocksy .jr-menu { column-count: 2; }
}
@media (min-width: 1180px) {
	.wp-theme-blocksy .jr-menu { column-count: 3; }
}
/* each category is a white card that masonry-packs into balanced columns (no empty
   gaps); break-inside keeps a card whole, margin is the vertical gap between stacked
   cards. Sequence reads down each column, then over. */
.wp-theme-blocksy .jr-menu__cat {
	break-inside: avoid; -webkit-column-break-inside: avoid; page-break-inside: avoid;
	background: #fff; border: 1px solid var(--jr-line); border-radius: 10px;
	padding: 1.2rem 1.35rem 1.3rem; box-shadow: var(--jr-shadow-sm);
	margin: 0 0 1.6rem;
}
.wp-theme-blocksy .jr-menu__head {
	display: flex; align-items: center; gap: .5rem;
	font-family: var(--jr-head); font-weight: 800; text-transform: uppercase;
	letter-spacing: .08em; color: var(--jr-ink); font-size: 1.02rem;
	margin: 0 0 .7rem; padding-bottom: .5rem;
	border-bottom: 2px dashed var(--jr-line);
}
.wp-theme-blocksy .jr-menu__ico { display: inline-flex; flex: 0 0 auto; }
.wp-theme-blocksy .jr-menu__ico svg { width: 1.15rem; height: 1.15rem; color: var(--jr-teal); display: block; }
.wp-theme-blocksy .jr-menu__row { display: flex; flex-wrap: wrap; align-items: baseline; gap: .15rem .5rem; margin: .45rem 0; }
.wp-theme-blocksy .jr-menu__row .nm { color: var(--jr-ink); font-weight: 600; font-size: .98rem; }
.wp-theme-blocksy .jr-menu__row .dots { flex: 1 1 1rem; min-width: 1rem; border-bottom: 2px dotted var(--jr-line); transform: translateY(-.18rem); }
.wp-theme-blocksy .jr-menu__row .pr { font-family: var(--jr-display); font-weight: 600; color: var(--jr-teal); font-size: 1.02rem; white-space: nowrap; }
.wp-theme-blocksy .jr-menu__row .note { flex: 0 0 100%; font-family: var(--jr-body); font-style: italic; font-weight: 400; color: var(--jr-ink-soft); font-size: .82rem; line-height: 1.35; margin-top: .1rem; }
.wp-theme-blocksy .jr-menu__row--info { margin-top: .55rem; }
@media print {
	.wp-theme-blocksy .jr-menu { column-count: 2; }
	.wp-theme-blocksy .jr-menu__cat { box-shadow: none; border-color: #ccc; }
	.wp-theme-blocksy .jr-menu__head, .wp-theme-blocksy .jr-menu__row .pr { color: #000; }
}

/* ---------------------------------------------------------------------
   9. Showtime callouts (Rib Night / Steak Night)
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-showtimes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-top: 2rem; }
.wp-theme-blocksy .jr-showtime {
	border: 1px solid rgba(0,0,0,.10); border-radius: 14px;
	padding: 1.7rem 1.6rem; box-shadow: var(--jr-shadow-sm);
	position: relative; overflow: hidden;
}
.wp-theme-blocksy .jr-showtime--rib { background: var(--jr-coral); color: #fff; }
.wp-theme-blocksy .jr-showtime--steak { background: var(--jr-teal); color: #fff; }
.wp-theme-blocksy .jr-showtime__day {
	font-family: var(--jr-head); font-weight: 800; text-transform: uppercase;
	letter-spacing: .14em; font-size: .8rem; opacity: .95;
}
.wp-theme-blocksy .jr-showtime__name { font-family: var(--jr-display); font-weight: 600; font-size: clamp(1.8rem, 1.2rem + 2.4vw, 2.8rem); line-height: 1; margin: .25rem 0; }
.wp-theme-blocksy .jr-showtime__time { font-family: var(--jr-head); font-weight: 700; font-size: 1.05rem; }
@media (max-width: 620px) { .wp-theme-blocksy .jr-showtimes { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   10. Dusk bar band (the dark "Happy Hour & Bar" moment)
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-duskbar {
	position: relative;
	background: var(--jr-night);
	background-image:
		radial-gradient(120% 80% at 80% -10%, rgba(201,138,46,.18), transparent 55%),
		radial-gradient(90% 70% at 10% 110%, rgba(197,81,47,.14), transparent 55%),
		radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
	background-size: auto, auto, 16px 16px;
	color: var(--jr-sand-tx);
	overflow: hidden;
	/* scalloped top + bottom edges */
	-webkit-mask:
		radial-gradient(14px at 14px 0, transparent 98%, #000) repeat-x top / 28px 14px,
		linear-gradient(#000 0 0) center / 100% calc(100% - 28px) no-repeat,
		radial-gradient(14px at 14px 100%, transparent 98%, #000) repeat-x bottom / 28px 14px;
}
.wp-theme-blocksy .jr-duskbar__inner { max-width: 1100px; margin: 0 auto; padding: clamp(3rem, 2rem + 3vw, 4.5rem) 1.5rem; }
.wp-theme-blocksy .jr-duskbar h2 { color: #fff; }
.wp-theme-blocksy .jr-duskbar .jr-eyebrow { color: var(--jr-gold) !important; }
.wp-theme-blocksy .jr-duskbar p { color: var(--jr-sand-tx); }
.wp-theme-blocksy .jr-duskbar .jr-script { color: var(--jr-gold); }
.wp-theme-blocksy .jr-cocktails {
	display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: .4rem 2rem; margin: 1.5rem 0 0;
}
.wp-theme-blocksy .jr-cocktails .row {
	display: flex; align-items: baseline; gap: .5rem;
	padding: .5rem 0; border-bottom: 1px solid rgba(243,233,210,.16);
}
.wp-theme-blocksy .jr-cocktails .nm { font-weight: 600; color: #fff; }
.wp-theme-blocksy .jr-cocktails .dots { flex: 1; border-bottom: 2px dotted rgba(243,233,210,.3); transform: translateY(-.18rem); }
.wp-theme-blocksy .jr-cocktails .pr { font-family: var(--jr-display); font-weight: 600; color: var(--jr-gold); }
.wp-theme-blocksy .jr-duskbar .wp-block-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.wp-theme-blocksy .jr-duskbar .wp-block-button__link {
	background: var(--jr-gold); color: #1a1a1a;
	box-shadow: var(--jr-shadow);
}
.wp-theme-blocksy .jr-duskbar .wp-block-button__link:hover { background: #dda64a; }
/* Secondary on the dark band: a solid light button (legible on night, pairs with the gold primary). */
.wp-theme-blocksy .jr-duskbar .wp-block-button.is-style-outline .wp-block-button__link {
	background: var(--jr-sand-tx); color: var(--jr-ink);
	border: none; box-shadow: var(--jr-shadow);
}
.wp-theme-blocksy .jr-duskbar .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: #fff; color: var(--jr-ink);
}

/* ---------------------------------------------------------------------
   11. Polaroid gallery
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-polaroids {
	display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center;
	margin-top: 2rem;
}
.wp-theme-blocksy .jr-polaroid {
	background: #fff; padding: .6rem .6rem 2.4rem; border: 1px solid var(--jr-line);
	box-shadow: var(--jr-shadow); width: 260px; position: relative;
	transition: transform .3s ease, box-shadow .3s ease;
}
.wp-theme-blocksy .jr-polaroid:nth-child(3n+1) { transform: rotate(-2.5deg); }
.wp-theme-blocksy .jr-polaroid:nth-child(3n+2) { transform: rotate(1.8deg); }
.wp-theme-blocksy .jr-polaroid:nth-child(3n+3) { transform: rotate(-.8deg); }
.wp-theme-blocksy .jr-polaroid:hover { transform: rotate(0) translateY(-6px); box-shadow: var(--jr-shadow), 0 22px 40px rgba(22,36,30,.18); z-index: 2; }
.wp-theme-blocksy .jr-polaroid img { display: block; width: 100%; height: 200px; object-fit: cover; }
.wp-theme-blocksy .jr-polaroid figcaption {
	position: absolute; bottom: .55rem; left: 0; right: 0; text-align: center;
	font-family: var(--jr-script); font-style: italic; color: var(--jr-ink-soft); font-size: 1.15rem;
}

/* ---------------------------------------------------------------------
   12. Buttons — coral "sticker" with hard ink shadow
   --------------------------------------------------------------------- */
.wp-theme-blocksy .wp-block-button__link {
	font-family: var(--jr-head); font-weight: 800;
	text-transform: uppercase; letter-spacing: .04em; font-size: .88rem;
	border-radius: var(--jr-radius);
	padding: .85rem 1.5rem;
	background: var(--jr-coral); color: #fff;
	box-shadow: var(--jr-hard);
	transition: transform .14s ease, box-shadow .14s ease, background-color .2s ease;
}
.wp-theme-blocksy .wp-block-button__link:hover { transform: translateY(-2px); box-shadow: var(--jr-shadow); background: var(--jr-coral-2); }
/* Secondary buttons: filled in the brand's deep teal so they read as solidly as the
   coral primary (matched size + shadow) instead of a faint transparent outline. */
.wp-theme-blocksy .wp-block-button.is-style-outline .wp-block-button__link {
	background: var(--jr-teal); color: #fff;
	border: none; box-shadow: var(--jr-hard);
}
.wp-theme-blocksy .wp-block-button.is-style-outline .wp-block-button__link:hover { background: var(--jr-teal-deep); color: #fff; }
.wp-theme-blocksy .wp-block-buttons { gap: .85rem; }

/* ---------------------------------------------------------------------
   13. Lists — coral check in a gold chip
   --------------------------------------------------------------------- */
.wp-theme-blocksy .entry-content ul:not(.wp-block-buttons):not(.menu):not(.jr-cocktails) { list-style: none; margin-left: 0; padding-left: 0; }
.wp-theme-blocksy .entry-content ul:not(.wp-block-buttons):not(.menu):not(.jr-cocktails) li {
	position: relative; padding-left: 2.1rem; margin-bottom: .7rem; color: var(--jr-ink);
}
.wp-theme-blocksy .entry-content ul:not(.wp-block-buttons):not(.menu):not(.jr-cocktails) li::before {
	content: ""; position: absolute; left: 0; top: .12em;
	width: 1.35rem; height: 1.35rem; border-radius: 5px;
	background: var(--jr-gold)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316241e' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
		center / .85rem no-repeat;
}

/* ---------------------------------------------------------------------
   14. Document download buttons
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-docs { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.wp-theme-blocksy .jr-docs a {
	display: inline-flex; align-items: center; gap: .55rem;
	background: #fff; border: 1px solid var(--jr-line); border-radius: var(--jr-radius);
	padding: .8rem 1.15rem; font-family: var(--jr-head); font-weight: 700; color: var(--jr-ink);
	box-shadow: var(--jr-shadow-sm); text-decoration: none;
	transition: transform .15s ease, box-shadow .15s ease;
}
.wp-theme-blocksy .jr-docs a:hover { transform: translateY(-2px); box-shadow: var(--jr-shadow); }
.wp-theme-blocksy .jr-docs svg { width: 1.1rem; height: 1.1rem; color: var(--jr-teal); }
/* Inline icons inside content headings (e.g. the reservation form heading).
   Flex-align so the icon sits centered next to the text and is never clipped;
   a bare inline <svg> with only a viewBox renders huge (and overflow-clips) otherwise. */
.wp-theme-blocksy .entry-content h2:has(> svg),
.wp-theme-blocksy .entry-content h3:has(> svg) {
	display: flex; align-items: center; gap: .5rem;
}
.wp-theme-blocksy .entry-content h2 > svg,
.wp-theme-blocksy .entry-content h3 > svg {
	width: 1em; height: 1em; flex: none; overflow: visible; color: var(--jr-teal);
}

/* ---------------------------------------------------------------------
   15. Images / figures / map / pdf
   --------------------------------------------------------------------- */
.wp-theme-blocksy .entry-content .wp-block-image img { border-radius: var(--jr-radius); }
.wp-theme-blocksy .entry-content .jr-img-cap img { max-width: 620px; margin-inline: auto; display: block; border: 1px solid var(--jr-line); }
.wp-theme-blocksy .entry-content .jr-img-cap figcaption { text-align: center; font-family: var(--jr-script); font-style: italic; color: var(--jr-ink-soft); font-size: 1.05rem; margin-top: .5rem; }
.wp-theme-blocksy .jr-contact-map {
	position: relative; height: 100%; min-height: 360px; border-radius: var(--jr-radius);
	overflow: hidden; border: 1px solid var(--jr-line); box-shadow: var(--jr-shadow-sm);
}
.wp-theme-blocksy .jr-contact-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.wp-theme-blocksy .jr-pdf {
	display: block; width: 100%; max-width: 920px; height: 80vh; min-height: 520px;
	margin-inline: auto;
	border: 1px solid var(--jr-line); border-radius: var(--jr-radius); box-shadow: var(--jr-shadow-sm); background: #fff;
}

/* ---------------------------------------------------------------------
   16. FAQ accordion ([jr_faq])
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-faq { max-width: 780px; margin: 2rem auto 0; }
.wp-theme-blocksy .jr-faq__item {
	background: #fff; border: 1px solid var(--jr-line); border-radius: 12px;
	box-shadow: var(--jr-shadow-sm); margin-bottom: 1rem; overflow: hidden;
}
.wp-theme-blocksy .jr-faq__q {
	cursor: pointer; list-style: none; font-family: var(--jr-head); font-weight: 800;
	font-size: 1.05rem; color: var(--jr-ink); padding: 1rem 2.75rem 1rem 1.25rem;
	position: relative;
}
.wp-theme-blocksy .jr-faq__q::-webkit-details-marker { display: none; }
.wp-theme-blocksy .jr-faq__q::after {
	content: "+"; position: absolute; right: 1.1rem; top: 50%; transform: translateY(-50%);
	font-family: var(--jr-display); font-size: 1.3rem; line-height: 1; color: var(--jr-coral);
}
.wp-theme-blocksy .jr-faq__item[open] .jr-faq__q { color: var(--jr-coral-2); }
.wp-theme-blocksy .jr-faq__item[open] .jr-faq__q::after { content: "\2212"; }
.wp-theme-blocksy .jr-faq__a { padding: 0 1.25rem 1.1rem; color: var(--jr-ink-soft); line-height: 1.65; }
.wp-theme-blocksy .jr-faq__a p { margin: 0; }

/* ---------------------------------------------------------------------
   17. Reservation forms
   --------------------------------------------------------------------- */
.wp-theme-blocksy .jr-form { max-width: 820px; }
.wp-theme-blocksy .jr-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.wp-theme-blocksy .jr-field { margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.wp-theme-blocksy .wpforms-field-label { font-family: var(--jr-head); font-weight: 700; color: var(--jr-ink); font-size: .9rem; }
.wp-theme-blocksy .wpforms-form input[type=text],
.wp-theme-blocksy .wpforms-form input[type=email],
.wp-theme-blocksy .wpforms-form input[type=tel],
.wp-theme-blocksy .wpforms-form input[type=number],
.wp-theme-blocksy .wpforms-form input[type=date],
.wp-theme-blocksy .wpforms-form input[type=time],
.wp-theme-blocksy .wpforms-form textarea,
.wp-theme-blocksy .wpforms-form select {
	width: 100%; border: 2px solid var(--jr-ink); border-radius: var(--jr-radius);
	padding: .7rem .85rem; font-family: var(--jr-body); background: #fff; color: var(--jr-ink);
	transition: box-shadow .15s ease, border-color .15s ease;
}
.wp-theme-blocksy .jr-form textarea { margin-top: 1.1rem; }
.wp-theme-blocksy .wpforms-form input:focus,
.wp-theme-blocksy .wpforms-form textarea:focus,
.wp-theme-blocksy .wpforms-form select:focus { outline: none; border-color: var(--jr-teal); box-shadow: 0 0 0 3px rgba(14,90,78,.18); }
.wp-theme-blocksy .wpforms-submit {
	margin-top: 1rem; background: var(--jr-coral) !important; color: #fff !important;
	font-family: var(--jr-head); font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
	border: 0; border-radius: var(--jr-radius); padding: .85rem 1.7rem !important; cursor: pointer;
	box-shadow: var(--jr-hard); transition: transform .14s ease, box-shadow .14s ease, background-color .2s ease;
}
.wp-theme-blocksy .wpforms-submit:hover { transform: translateY(-2px); box-shadow: var(--jr-shadow); background: var(--jr-coral-2) !important; }
@media (max-width: 600px) { .wp-theme-blocksy .jr-form__grid { grid-template-columns: 1fr; } }
.wp-theme-blocksy .jr-form-notice { border-radius: 10px; padding: 1rem 1.25rem; margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.55; border: 2px solid; }
.wp-theme-blocksy .jr-form-notice--ok { background: #eef7ec; border-color: var(--jr-green); color: #14502f; }
.wp-theme-blocksy .jr-form-notice--err { background: #fdeee7; border-color: var(--jr-coral); color: #a23c12; }

/* ---------------------------------------------------------------------
   18. Footer
   --------------------------------------------------------------------- */
.ct-footer { background: var(--jr-night) !important; color: var(--jr-sand-tx); border-top: 5px solid var(--jr-gold); position: relative; overflow: hidden; }
.ct-footer::before { /* faint sun-ray in a corner */
	content: ""; position: absolute; top: -40%; right: -10%; width: 60vmax; height: 60vmax;
	background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(242,180,65,.06) 0deg 5deg, transparent 5deg 12deg);
	-webkit-mask: radial-gradient(closest-side, #000, transparent 65%); mask: radial-gradient(closest-side, #000, transparent 65%);
	pointer-events: none;
}
.ct-footer a, .ct-footer .ct-footer-cell, .ct-footer p { color: var(--jr-sand-tx); }
.ct-footer a:hover { color: var(--jr-gold); }
.ct-footer-copyright { font-family: var(--jr-head); font-weight: 600; letter-spacing: .04em; font-size: .82rem; }

/* ---------------------------------------------------------------------
   19. Mobile conversion rail
   --------------------------------------------------------------------- */
.jr-mobile-cta { display: none; }
@media (max-width: 782px) {
	body.wp-theme-blocksy { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
	.jr-mobile-cta {
		position: fixed; z-index: 9999; left: 0; right: 0; bottom: 0;
		display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
		padding: .7rem .85rem calc(.7rem + env(safe-area-inset-bottom));
		background: var(--jr-ink); border-top: 3px solid var(--jr-gold);
		box-shadow: 0 -12px 30px rgba(14,42,40,.3);
	}
	.jr-mobile-cta a {
		display: flex; align-items: center; justify-content: center; min-height: 46px;
		border-radius: var(--jr-radius); font-family: var(--jr-head); font-weight: 800;
		text-transform: uppercase; letter-spacing: .03em; text-decoration: none; font-size: .9rem;
	}
	.jr-mobile-cta__call { background: var(--jr-coral); color: #fff; }
	.jr-mobile-cta__quote { background: var(--jr-gold); color: var(--jr-ink); }
}

/* ---------------------------------------------------------------------
   20. Scroll-reveal + accessibility + motion
   --------------------------------------------------------------------- */
.jr-reveal-on .jr-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.jr-reveal-on .jr-reveal.jr-in { opacity: 1; transform: none; }

.wp-theme-blocksy a:focus-visible,
.wp-theme-blocksy .wp-block-button__link:focus-visible,
.wp-theme-blocksy button:focus-visible,
.wp-theme-blocksy input:focus-visible,
.wp-theme-blocksy textarea:focus-visible,
.wp-theme-blocksy select:focus-visible,
.wp-theme-blocksy .wpforms-submit:focus-visible,
.wp-theme-blocksy .jr-mobile-cta a:focus-visible { outline: 3px solid var(--jr-coral); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
	.wp-theme-blocksy *, .jr-marquee__track, .jr-poster__sun { animation: none !important; transition: none !important; }
	.jr-reveal-on .jr-reveal { opacity: 1 !important; transform: none !important; }
}
