/* =========================================================================
   The Plough, Westcliff-on-Sea
   Dark design system.

   Built on near-black with warm charcoal panels, brass for anything that
   would be polished in a real pub, and oxblood for depth. Loaded after
   Salient so it wins; scoped to body.plough where Salient fights back.
   ====================================================================== */

/* -------------------------------------------------------------------------
   1. Tokens
   ---------------------------------------------------------------------- */

:root {
	/* Ground */
	--pl-black:      #0b0b0c;
	--pl-ink:        #121214;
	--pl-panel:      #17171a;
	--pl-raised:     #1e1e22;
	--pl-char:       #0f0f11;

	/* Brass — the accent that does all the work */
	--pl-brass:      #d6a03c;
	--pl-brass-lo:   #a87a24;
	--pl-brass-hi:   #f0c66e;
	--pl-brass-dim:  rgba(214, 160, 60, .14);

	/* Oxblood */
	--pl-blood:      #6e1f27;
	--pl-blood-hi:   #8f2b35;

	/* Text — warm, never pure white */
	--pl-cream:      #f2ece0;
	--pl-text:       #cfc8ba;
	--pl-muted:      #8e887c;
	--pl-faint:      #5f5a52;

	/* Lines */
	--pl-line:       rgba(242, 236, 224, .10);
	--pl-line-2:     rgba(242, 236, 224, .18);

	/* Type */
	--pl-display:    'Oswald', 'Haettenschweiler', 'Arial Narrow', sans-serif;
	--pl-body:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--pl-serif:      'Cormorant Garamond', Georgia, 'Times New Roman', serif;

	/* Rhythm */
	--pl-wrap:       1220px;
	--pl-gut:        clamp(18px, 4vw, 40px);
	--pl-sec-y:      clamp(64px, 9vw, 130px);
	--pl-r:          4px;
	--pl-r-lg:       10px;

	/* Motion */
	--pl-ease:       cubic-bezier(.2, .7, .3, 1);
}

/* -------------------------------------------------------------------------
   2. Base + Salient overrides
   ---------------------------------------------------------------------- */

body.plough,
body.plough #ajax-content-wrap {
	background: var(--pl-black);
	color: var(--pl-text);
	font-family: var(--pl-body);
	font-size: 16.5px;
	line-height: 1.68;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

body.plough { margin: 0; }

/* Film grain. Keeps flat blacks reading as atmosphere, not emptiness. */
body.plough::after {
	content: "";
	position: fixed;
	inset: 0;
	z-index: 9998;
	pointer-events: none;
	opacity: .035;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.plough * { box-sizing: border-box; }

/*
 * Reset-level rules go through :where() so they carry zero specificity.
 * `body.plough img` would otherwise out-specify single-class component rules
 * like .pl-logo__mark and silently undo their sizing.
 */
:where(body.plough) :where(img) { max-width: 100%; height: auto; display: block; }

/* Salient gives list items a marker and display:list-item; our lists are
   flex/grid layouts, so strip it across every pl- component. */
:where(body.plough) :where([class*="pl-"] ul, ul[class*="pl-"]) { list-style: none; margin: 0; padding: 0; }
body.plough [class*="pl-"] li { list-style: none; }
body.plough [class*="pl-"] li::marker { content: ""; }

body.plough a { color: var(--pl-brass); text-decoration: none; transition: color .2s var(--pl-ease); }
body.plough a:hover { color: var(--pl-brass-hi); }

body.plough :focus-visible {
	outline: 2px solid var(--pl-brass);
	outline-offset: 3px;
	border-radius: 2px;
}

body.plough h1, body.plough h2, body.plough h3,
body.plough h4, body.plough h5, body.plough h6 {
	font-family: var(--pl-display);
	color: var(--pl-cream);
	font-weight: 500;
	letter-spacing: .005em;
	margin: 0 0 .5em;
	line-height: 1.08;
}

body.plough p { margin: 0 0 1.15em; }
body.plough p:last-child { margin-bottom: 0; }

body.plough strong { color: var(--pl-cream); font-weight: 600; }

body.plough code {
	font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
	font-size: .86em;
	background: rgba(214, 160, 60, .10);
	color: var(--pl-brass-hi);
	padding: .14em .42em;
	border-radius: 3px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.pl-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--pl-brass);
	color: var(--pl-black) !important;
	padding: 14px 22px;
	font-family: var(--pl-display);
	text-transform: uppercase;
	letter-spacing: .08em;
}
.pl-skip:focus { left: 12px; top: 12px; }

/* Neutralise Salient page furniture we aren't using. */
body.plough #header-space,
body.plough #header-outer,
body.plough #page-header-wrap,
body.plough .container-wrap > .row > .span_12 > h1,
body.plough #footer-outer,
body.plough #to-top { display: none !important; }

body.plough .container-wrap,
body.plough #ajax-content-wrap > .container-wrap {
	background: transparent;
	padding: 0;
	margin: 0;
}

/* -------------------------------------------------------------------------
   3. Layout primitives
   ---------------------------------------------------------------------- */

.pl-wrap {
	width: 100%;
	max-width: var(--pl-wrap);
	margin-inline: auto;
	padding-inline: var(--pl-gut);
}

.pl-main { display: block; }

.pl-sec {
	position: relative;
	padding-block: var(--pl-sec-y);
	background: var(--pl-black);
}
.pl-sec--deep  { background: var(--pl-ink); }
.pl-sec--char  { background: var(--pl-char); }
.pl-sec--panel { background: var(--pl-panel); }

/* Hairline between stacked sections of the same tone. */
.pl-sec + .pl-sec::before {
	content: "";
	position: absolute;
	inset-inline: var(--pl-gut);
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--pl-line), transparent);
}

.pl-grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.pl-grid--2 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.pl-grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }

/* -------------------------------------------------------------------------
   4. Type scale
   ---------------------------------------------------------------------- */

.pl-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--pl-display);
	font-size: 12.5px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .22em;
	color: var(--pl-brass);
	margin: 0 0 18px;
}
.pl-rule {
	display: block;
	width: 34px; height: 1px;
	background: currentColor;
	opacity: .55;
	flex: none;
}

.pl-h2 {
	font-size: clamp(30px, 4.6vw, 56px);
	text-transform: uppercase;
	letter-spacing: -.005em;
	font-weight: 500;
	margin: 0 0 .38em;
}
.pl-h2 em {
	font-family: var(--pl-serif);
	font-style: italic;
	text-transform: none;
	font-weight: 600;
	color: var(--pl-brass);
	letter-spacing: 0;
}

.pl-h3 {
	font-size: clamp(19px, 2vw, 24px);
	text-transform: uppercase;
	letter-spacing: .03em;
	display: flex;
	align-items: center;
	gap: 10px;
}
.pl-h4 {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--pl-cream);
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: .6em;
}

.pl-lede {
	font-size: clamp(16.5px, 1.5vw, 19.5px);
	line-height: 1.6;
	color: var(--pl-text);
}

.pl-script {
	font-family: var(--pl-serif);
	font-style: italic;
	font-size: clamp(22px, 2.6vw, 32px);
	color: var(--pl-brass);
	line-height: 1.25;
	margin: 0 0 .5em;
}

.pl-head { max-width: 62ch; margin-bottom: clamp(34px, 4vw, 56px); }
.pl-head--center { margin-inline: auto; text-align: center; }
.pl-head--center .pl-eyebrow { justify-content: center; }

.pl-icon { width: 1.25em; height: 1.25em; flex: none; color: var(--pl-brass); }

/* -------------------------------------------------------------------------
   5. Buttons
   ---------------------------------------------------------------------- */

.pl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	font-family: var(--pl-display);
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .13em;
	padding: 15px 30px;
	border-radius: var(--pl-r);
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
	transition: transform .18s var(--pl-ease), background .2s var(--pl-ease),
	            color .2s var(--pl-ease), border-color .2s var(--pl-ease),
	            box-shadow .2s var(--pl-ease);
}
.pl-btn--sm { padding: 11px 20px; font-size: 12.5px; }

.pl-btn--brass {
	background: linear-gradient(175deg, var(--pl-brass-hi), var(--pl-brass) 58%, var(--pl-brass-lo));
	color: #16120a !important;
	box-shadow: 0 1px 0 rgba(255, 255, 255, .25) inset, 0 8px 26px -12px rgba(214, 160, 60, .8);
}
.pl-btn--brass:hover {
	color: #16120a !important;
	transform: translateY(-2px);
	box-shadow: 0 1px 0 rgba(255, 255, 255, .3) inset, 0 14px 34px -12px rgba(214, 160, 60, .95);
}

.pl-btn--ghost {
	border-color: var(--pl-line-2);
	color: var(--pl-cream) !important;
	background: rgba(242, 236, 224, .03);
}
.pl-btn--ghost:hover {
	border-color: var(--pl-brass);
	color: var(--pl-brass-hi) !important;
	transform: translateY(-2px);
}

.pl-btn--dark {
	background: var(--pl-black);
	color: var(--pl-brass-hi) !important;
}
.pl-btn--dark:hover { transform: translateY(-2px); background: #000; }

.pl-btn--outline-dark {
	border-color: rgba(22, 18, 10, .4);
	color: #16120a !important;
}
.pl-btn--outline-dark:hover { background: rgba(22, 18, 10, .1); transform: translateY(-2px); }

/* -------------------------------------------------------------------------
   6. Header
   ---------------------------------------------------------------------- */

.pl-header {
	position: sticky;
	top: 0;
	z-index: 900;
	background: rgba(11, 11, 12, .88);
	backdrop-filter: blur(14px) saturate(140%);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	border-bottom: 1px solid var(--pl-line);
	transition: background .25s var(--pl-ease), border-color .25s var(--pl-ease);
}
.pl-header.is-stuck { background: rgba(11, 11, 12, .97); border-bottom-color: var(--pl-line-2); }

/* Top strip */
.pl-header__strip {
	background: linear-gradient(90deg, var(--pl-char), #131316 50%, var(--pl-char));
	border-bottom: 1px solid var(--pl-line);
	font-size: 12.5px;
}
.pl-header__strip-in {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 40px;
}
.pl-header__addr,
.pl-header__live,
.pl-header__tel {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	color: var(--pl-muted);
	letter-spacing: .02em;
}
.pl-header__addr .pl-icon,
.pl-header__tel .pl-icon { width: 14px; height: 14px; }
.pl-header__tel { color: var(--pl-cream) !important; font-weight: 500; }
.pl-header__tel:hover { color: var(--pl-brass-hi) !important; }
.pl-header__strip-right { display: flex; align-items: center; gap: 18px; }

.pl-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: var(--pl-faint);
	flex: none;
	box-shadow: 0 0 0 3px rgba(95, 90, 82, .16);
}
.pl-dot.is-open {
	background: #4ea86a;
	box-shadow: 0 0 0 3px rgba(78, 168, 106, .2);
	animation: pl-pulse 2.6s ease-in-out infinite;
}
@keyframes pl-pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(78, 168, 106, .2); }
	50%      { box-shadow: 0 0 0 6px rgba(78, 168, 106, .05); }
}

/* Main bar */
.pl-header__bar-in {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 32px);
	min-height: 78px;
}

.pl-logo { display: flex; align-items: center; gap: 12px; flex: none; }
.pl-logo__mark {
	width: auto;
	height: 42px;
	filter: brightness(0) saturate(100%) invert(84%) sepia(28%) saturate(720%) hue-rotate(348deg) brightness(93%) contrast(91%);
	transition: filter .25s var(--pl-ease);
}
.pl-logo:hover .pl-logo__mark { filter: none; }
.pl-logo__type { display: flex; flex-direction: column; line-height: 1; }
.pl-logo__name {
	font-family: var(--pl-display);
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--pl-cream);
}
.pl-logo__sub {
	font-family: var(--pl-display);
	font-size: 9.5px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: .3em;
	color: var(--pl-brass);
	margin-top: 5px;
}

.pl-nav { margin-left: auto; }
.pl-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2vw, 30px);
	list-style: none;
	margin: 0;
	padding: 0;
}
.pl-nav__list li { margin: 0; display: block; white-space: nowrap; }
.pl-nav__list a {
	position: relative;
	font-family: var(--pl-display);
	font-size: 13.5px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .13em;
	color: var(--pl-text) !important;
	padding: 6px 0;
	display: block;
}
.pl-nav__list a::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 100%; height: 1px;
	background: var(--pl-brass);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .32s var(--pl-ease);
}
.pl-nav__list a:hover { color: var(--pl-cream) !important; }
.pl-nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }
.pl-nav__list .current-menu-item > a { color: var(--pl-brass) !important; }
.pl-nav__list .current-menu-item > a::after { transform: scaleX(1); }

.pl-header__actions { display: flex; align-items: center; gap: 12px; flex: none; }

.pl-socials { display: flex; align-items: center; gap: 12px; list-style: none; margin: 0; padding: 0; }
.pl-socials a {
	display: grid;
	place-items: center;
	width: 28px; height: 28px;
	border-radius: 50%;
	color: var(--pl-muted) !important;
	border: 1px solid transparent;
	transition: color .2s var(--pl-ease), border-color .2s var(--pl-ease), transform .2s var(--pl-ease);
}
.pl-socials svg { width: 15px; height: 15px; }
.pl-socials a:hover {
	color: var(--pl-brass) !important;
	border-color: var(--pl-brass-dim);
	transform: translateY(-1px);
}
.pl-socials--footer a { width: 38px; height: 38px; border-color: var(--pl-line); }
.pl-socials--footer svg { width: 17px; height: 17px; }

/* Burger */
.pl-burger {
	display: none;
	position: relative;
	width: 42px; height: 42px;
	background: transparent;
	border: 1px solid var(--pl-line-2);
	border-radius: var(--pl-r);
	cursor: pointer;
	padding: 0;
}
.pl-burger span[aria-hidden] {
	position: absolute;
	left: 50%; top: 50%;
	width: 18px; height: 1.5px;
	background: var(--pl-cream);
	transform: translate(-50%, -50%);
	transition: background .2s var(--pl-ease);
}
.pl-burger span[aria-hidden]::before,
.pl-burger span[aria-hidden]::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%; height: 100%;
	background: var(--pl-cream);
	transition: transform .3s var(--pl-ease);
}
.pl-burger span[aria-hidden]::before { transform: translateY(-6px); }
.pl-burger span[aria-hidden]::after  { transform: translateY(6px); }
.pl-burger[aria-expanded="true"] span[aria-hidden] { background: transparent; }
.pl-burger[aria-expanded="true"] span[aria-hidden]::before { transform: rotate(45deg); }
.pl-burger[aria-expanded="true"] span[aria-hidden]::after  { transform: rotate(-45deg); }

/* Mobile drawer */
.pl-drawer {
	position: fixed;
	inset: 0;
	z-index: 899;
	background: rgba(11, 11, 12, .98);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	padding: 140px var(--pl-gut) 40px;
	overflow-y: auto;
	opacity: 0;
	transition: opacity .28s var(--pl-ease);
}
.pl-drawer.is-open { opacity: 1; }
.pl-drawer__list { list-style: none; margin: 0 0 40px; padding: 0; }
.pl-drawer__list li { border-bottom: 1px solid var(--pl-line); }
.pl-drawer__list a {
	display: block;
	padding: 18px 2px;
	font-family: var(--pl-display);
	font-size: clamp(26px, 8vw, 40px);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--pl-cream) !important;
}
.pl-drawer__list .current-menu-item > a { color: var(--pl-brass) !important; }
.pl-drawer__foot { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.pl-drawer__addr { color: var(--pl-muted); font-size: 14px; margin: 0; }

/* -------------------------------------------------------------------------
   7. Hero
   ---------------------------------------------------------------------- */

.pl-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(520px, 78vh, 860px);
	padding-block: clamp(90px, 14vw, 150px) clamp(64px, 9vw, 110px);
	background-color: var(--pl-black);
	background-image: var(--pl-hero-img);
	background-size: cover;
	background-position: center 42%;
	overflow: hidden;
	isolation: isolate;
}
.pl-hero--short { min-height: clamp(380px, 52vh, 560px); }

.pl-hero__veil {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(120% 90% at 18% 92%, rgba(11, 11, 12, .96) 8%, rgba(11, 11, 12, .55) 48%, rgba(11, 11, 12, .2) 78%),
		linear-gradient(to top, var(--pl-black) 2%, rgba(11, 11, 12, .58) 38%, rgba(11, 11, 12, .3) 70%),
		linear-gradient(to bottom, rgba(11, 11, 12, .82), transparent 34%);
}
/* Warm the photograph so it sits with the brass. */
.pl-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(140deg, rgba(110, 31, 39, .2), transparent 46%, rgba(214, 160, 60, .12));
	mix-blend-mode: overlay;
}

.pl-hero__inner { position: relative; max-width: 860px; }
.pl-hero__eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	font-family: var(--pl-display);
	font-size: clamp(11px, 1.3vw, 13px);
	text-transform: uppercase;
	letter-spacing: .26em;
	color: var(--pl-brass);
	margin: 0 0 22px;
}
.pl-hero__title {
	font-size: clamp(46px, 9.2vw, 122px);
	line-height: .92;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: -.015em;
	color: var(--pl-cream);
	margin: 0 0 26px;
	text-shadow: 0 2px 40px rgba(0, 0, 0, .6);
}
.pl-hero__title em {
	font-family: var(--pl-serif);
	font-style: italic;
	font-weight: 600;
	text-transform: none;
	letter-spacing: -.01em;
	color: var(--pl-brass);
}
.pl-hero__lede {
	font-size: clamp(16px, 1.65vw, 20px);
	line-height: 1.6;
	max-width: 58ch;
	color: var(--pl-text);
	margin: 0 0 34px;
}
.pl-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.pl-hero__status {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	font-size: 13.5px;
	color: var(--pl-muted);
	margin: 0;
	font-family: var(--pl-display);
	letter-spacing: .08em;
	text-transform: uppercase;
}
.pl-sep { opacity: .4; }

.pl-hero__scroll {
	position: absolute;
	left: 50%; bottom: 26px;
	transform: translateX(-50%);
	width: 26px; height: 42px;
	border: 1px solid var(--pl-line-2);
	border-radius: 14px;
	z-index: 2;
}
.pl-hero__scroll span[aria-hidden] {
	position: absolute;
	left: 50%; top: 9px;
	width: 3px; height: 7px;
	border-radius: 2px;
	background: var(--pl-brass);
	transform: translateX(-50%);
	animation: pl-scroll 1.9s var(--pl-ease) infinite;
}
@keyframes pl-scroll {
	0%   { opacity: 0; transform: translate(-50%, -4px); }
	40%  { opacity: 1; }
	100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* Inner-page masthead */
.pl-pagehead {
	position: relative;
	padding-block: clamp(70px, 11vw, 130px) clamp(46px, 7vw, 80px);
	background-color: var(--pl-ink);
	background-image: var(--pl-hero-img);
	background-size: cover;
	background-position: center 40%;
	border-bottom: 1px solid var(--pl-line);
	isolation: isolate;
	overflow: hidden;
}
.pl-pagehead .pl-hero__veil { z-index: -1; }
.pl-pagehead:not(.has-img) .pl-hero__veil { background: none; }
.pl-pagehead::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--pl-brass-dim) 30%, var(--pl-brass-dim) 70%, transparent);
}
.pl-pagehead__title {
	font-size: clamp(38px, 7vw, 82px);
	text-transform: uppercase;
	line-height: .96;
	margin: 0 0 18px;
	color: var(--pl-cream);
}
.pl-pagehead__lede {
	font-size: clamp(16px, 1.5vw, 19px);
	max-width: 58ch;
	color: var(--pl-text);
	margin: 0;
}

/* -------------------------------------------------------------------------
   8. Ticker
   ---------------------------------------------------------------------- */

.pl-ticker {
	background: linear-gradient(90deg, var(--pl-brass-lo), var(--pl-brass) 42%, var(--pl-brass-hi) 62%, var(--pl-brass));
	color: #16120a;
	overflow: hidden;
	padding-block: 13px;
	border-block: 1px solid rgba(0, 0, 0, .22);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.pl-ticker__track {
	display: flex;
	align-items: center;
	gap: 26px;
	width: max-content;
	animation: pl-marquee 46s linear infinite;
}
.pl-ticker__item {
	font-family: var(--pl-display);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .17em;
	white-space: nowrap;
}
.pl-ticker__glyph { font-size: 9px; opacity: .55; }
@keyframes pl-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* -------------------------------------------------------------------------
   9. Intro + stamp
   ---------------------------------------------------------------------- */

.pl-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
	gap: clamp(30px, 5vw, 72px);
	align-items: center;
}
.pl-intro__media { position: relative; }
.pl-intro__media img {
	width: 100%;
	aspect-ratio: 4 / 3.4;
	object-fit: cover;
	border-radius: var(--pl-r-lg);
	filter: saturate(.86) contrast(1.05) brightness(.9);
}
.pl-intro__media::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: var(--pl-r-lg);
	box-shadow: inset 0 0 0 1px var(--pl-line-2), inset 0 -90px 90px -60px rgba(11, 11, 12, .9);
	pointer-events: none;
}

.pl-stamp {
	position: absolute;
	right: clamp(-14px, -1.4vw, -8px);
	bottom: clamp(-18px, -2vw, -12px);
	display: grid;
	place-content: center;
	justify-items: center;
	width: clamp(110px, 13vw, 150px);
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle at 34% 28%, #1c1c20, var(--pl-black) 72%);
	border: 1px solid var(--pl-brass-dim);
	box-shadow: 0 18px 44px -18px rgba(0, 0, 0, .9);
	text-align: center;
	z-index: 2;
}
.pl-stamp::before {
	content: "";
	position: absolute;
	inset: 7px;
	border-radius: 50%;
	border: 1px dashed rgba(214, 160, 60, .32);
}
.pl-stamp__top, .pl-stamp__bot {
	font-family: var(--pl-display);
	font-size: 8.5px;
	text-transform: uppercase;
	letter-spacing: .2em;
	color: var(--pl-muted);
}
.pl-stamp__yr {
	font-family: var(--pl-serif);
	font-size: clamp(28px, 3.6vw, 40px);
	font-weight: 600;
	color: var(--pl-brass);
	line-height: 1.15;
}

.pl-stats {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 3vw, 46px);
	list-style: none;
	margin: 34px 0 0;
	padding: 26px 0 0;
	border-top: 1px solid var(--pl-line);
}
.pl-stats li { display: flex; flex-direction: column; gap: 4px; }
.pl-stats__n {
	font-family: var(--pl-display);
	font-size: clamp(28px, 3.4vw, 40px);
	font-weight: 500;
	color: var(--pl-brass);
	line-height: 1;
}
.pl-stats__l {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: var(--pl-muted);
}

/* -------------------------------------------------------------------------
   10. Cards
   ---------------------------------------------------------------------- */

.pl-card {
	position: relative;
	background: linear-gradient(170deg, var(--pl-raised), var(--pl-panel));
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-r-lg);
	padding: clamp(24px, 2.6vw, 34px);
	transition: border-color .28s var(--pl-ease), transform .28s var(--pl-ease), box-shadow .28s var(--pl-ease);
	overflow: hidden;
}
.pl-card::before {
	content: "";
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--pl-brass-dim) 40%, transparent);
	opacity: 0;
	transition: opacity .3s var(--pl-ease);
}
.pl-card:hover {
	border-color: rgba(214, 160, 60, .32);
	transform: translateY(-4px);
	box-shadow: 0 24px 50px -30px rgba(0, 0, 0, .95);
}
.pl-card:hover::before { opacity: 1; }

.pl-event__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.pl-event__top .pl-icon { width: 27px; height: 27px; }
.pl-tag {
	font-family: var(--pl-display);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--pl-brass);
	background: var(--pl-brass-dim);
	border: 1px solid rgba(214, 160, 60, .22);
	padding: 5px 10px;
	border-radius: 100px;
	white-space: nowrap;
}
.pl-event__when { display: flex; flex-direction: column; gap: 2px; margin: 0 0 8px; }
.pl-event__when strong {
	font-family: var(--pl-display);
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: var(--pl-cream);
}
.pl-event__when span { font-size: 12.5px; color: var(--pl-muted); }
.pl-event p:last-child { color: var(--pl-text); font-size: 15px; margin: 0; }

/* Quotes */
.pl-quote { display: flex; flex-direction: column; gap: 16px; }
.pl-stars { display: flex; gap: 3px; color: var(--pl-brass); font-size: 15px; letter-spacing: .1em; }
.pl-quote blockquote {
	font-family: var(--pl-serif);
	font-size: clamp(19px, 2vw, 23px);
	font-style: italic;
	line-height: 1.42;
	color: var(--pl-cream);
	margin: 0;
	border: 0;
	padding: 0;
}
.pl-quote figcaption {
	font-family: var(--pl-display);
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: .16em;
	color: var(--pl-muted);
	margin-top: auto;
	padding-top: 6px;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.pl-quote__src { color: var(--pl-faint); letter-spacing: .1em; }

.pl-reviews__cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: clamp(30px, 4vw, 46px);
	padding-top: clamp(26px, 3vw, 36px);
	border-top: 1px solid var(--pl-line);
}
.pl-reviews__cta p { margin: 0; color: var(--pl-muted); }

/* -------------------------------------------------------------------------
   11. Rooms
   ---------------------------------------------------------------------- */

/* Four rooms want an explicit track count — auto-fit leaves a lone card
   stranded on a second row at common desktop widths. */
.pl-rooms { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(18px, 2.4vw, 28px); }
@media (min-width: 620px)  { .pl-rooms { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1180px) { .pl-rooms { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.pl-room {
	background: var(--pl-panel);
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-r-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: border-color .3s var(--pl-ease), transform .3s var(--pl-ease);
}
.pl-room:hover { border-color: rgba(214, 160, 60, .3); transform: translateY(-4px); }
.pl-room__img { position: relative; overflow: hidden; }
.pl-room__img img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	filter: saturate(.8) brightness(.78) contrast(1.06);
	transition: transform .7s var(--pl-ease), filter .45s var(--pl-ease);
}
.pl-room:hover .pl-room__img img { transform: scale(1.055); filter: saturate(.95) brightness(.9) contrast(1.04); }
.pl-room__img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--pl-panel) 1%, rgba(23, 23, 26, .25) 46%, transparent);
}
.pl-room__no {
	position: absolute;
	top: 14px; left: 16px;
	z-index: 2;
	font-family: var(--pl-display);
	font-size: 12px;
	letter-spacing: .2em;
	color: var(--pl-brass);
	background: rgba(11, 11, 12, .7);
	backdrop-filter: blur(6px);
	padding: 5px 10px;
	border-radius: 100px;
	border: 1px solid var(--pl-brass-dim);
}
.pl-room__body { padding: clamp(20px, 2.2vw, 28px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pl-room__body p { font-size: 15px; margin: 0; }
.pl-room__meta {
	margin-top: auto !important;
	padding-top: 14px;
	border-top: 1px solid var(--pl-line);
	font-family: var(--pl-display);
	font-size: 11px !important;
	text-transform: uppercase;
	letter-spacing: .15em;
	color: var(--pl-brass) !important;
}

/* -------------------------------------------------------------------------
   12. Hours
   ---------------------------------------------------------------------- */

.pl-hours__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: clamp(28px, 4vw, 58px);
	align-items: start;
}
.pl-hours { list-style: none; margin: 0; padding: 0; }
.pl-hours__row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	padding: 15px 0;
	border-bottom: 1px solid var(--pl-line);
}
.pl-hours__row:first-child { border-top: 1px solid var(--pl-line); }
.pl-hours__d {
	font-family: var(--pl-display);
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: .14em;
	color: var(--pl-text);
	flex: none;
}
.pl-hours__dots {
	flex: 1;
	height: 1px;
	margin-bottom: 4px;
	background-image: radial-gradient(circle, var(--pl-faint) 1px, transparent 1px);
	background-size: 6px 1px;
	background-repeat: repeat-x;
	opacity: .55;
}
.pl-hours__t {
	font-family: var(--pl-display);
	font-size: 15px;
	letter-spacing: .05em;
	color: var(--pl-cream);
	flex: none;
}
.pl-hours__row.is-today { border-color: rgba(214, 160, 60, .28); }
.pl-hours__row.is-today .pl-hours__d,
.pl-hours__row.is-today .pl-hours__t { color: var(--pl-brass); }
.pl-hours__badge {
	font-family: var(--pl-display);
	font-size: 9.5px;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: #16120a;
	background: var(--pl-brass);
	padding: 3px 8px;
	border-radius: 100px;
	flex: none;
}

.pl-hours__side { display: grid; gap: 16px; }
.pl-note {
	background: var(--pl-panel);
	border: 1px solid var(--pl-line);
	border-left: 2px solid var(--pl-brass-dim);
	border-radius: var(--pl-r);
	padding: 22px 24px;
}
.pl-note p { font-size: 14.5px; color: var(--pl-muted); margin: 0; }
.pl-note__big { color: var(--pl-cream) !important; font-size: 16px !important; margin-bottom: 6px !important; font-weight: 500; }
.pl-note--brass {
	background: linear-gradient(150deg, rgba(214, 160, 60, .13), rgba(110, 31, 39, .13));
	border-color: rgba(214, 160, 60, .28);
	border-left-color: var(--pl-brass);
}
.pl-note--brass .pl-note__big { color: var(--pl-brass-hi) !important; }

/* -------------------------------------------------------------------------
   13. Food
   ---------------------------------------------------------------------- */

.pl-sec--food { position: relative; overflow: hidden; }
.pl-sec--food::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 60% at 82% 12%, rgba(110, 31, 39, .3), transparent 62%);
	pointer-events: none;
}
.pl-sec--food > .pl-wrap { position: relative; }

.pl-food {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
	gap: clamp(28px, 4.5vw, 66px);
	align-items: center;
	margin-bottom: clamp(40px, 5vw, 70px);
}
.pl-food__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.pl-food__media { margin: 0; }
.pl-food__media img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center 28%;
	border-radius: var(--pl-r-lg);
	border: 1px solid var(--pl-line-2);
	filter: saturate(.92) contrast(1.06) brightness(.9);
}
.pl-food__media figcaption {
	margin-top: 14px;
	font-family: var(--pl-display);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .17em;
	color: var(--pl-faint);
	text-align: center;
}

/* Service times pair */
.pl-servtimes {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
	gap: 14px;
	list-style: none;
	margin: 30px 0 0;
	padding: 0;
}
.pl-servtimes li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 16px 18px;
	background: rgba(242, 236, 224, .028);
	border: 1px solid var(--pl-line);
	border-left: 2px solid var(--pl-brass-dim);
	border-radius: var(--pl-r);
}
.pl-servtimes .pl-icon { width: 20px; height: 20px; margin-top: 2px; }
.pl-servtimes__k {
	display: block;
	font-family: var(--pl-display);
	font-size: 10.5px;
	text-transform: uppercase;
	letter-spacing: .2em;
	color: var(--pl-brass);
	margin-bottom: 3px;
}
.pl-servtimes__v { display: block; font-size: 14.5px; color: var(--pl-cream); line-height: 1.4; }

/* The Sunday roast feature — the one menu published with full prices. */
.pl-roast {
	display: grid;
	grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
	gap: clamp(26px, 4vw, 58px);
	align-items: center;
	margin-top: clamp(44px, 5.5vw, 78px);
	padding: clamp(26px, 3.4vw, 46px);
	background: linear-gradient(155deg, rgba(110, 31, 39, .24), var(--pl-panel) 58%);
	border: 1px solid rgba(214, 160, 60, .2);
	border-radius: var(--pl-r-lg);
}
.pl-roast__media { margin: 0; }
.pl-roast__media img {
	width: 100%;
	border-radius: var(--pl-r);
	border: 1px solid var(--pl-line-2);
	box-shadow: 0 26px 52px -26px rgba(0, 0, 0, .95);
}
.pl-roast__body .pl-h2 { font-size: clamp(26px, 3.4vw, 42px); margin-bottom: .45em; }
.pl-roast__list { list-style: none; margin: 26px 0; padding: 0; display: grid; gap: 13px; }
.pl-roast__list li { display: flex; align-items: baseline; gap: 10px; }
.pl-roast__n {
	font-family: var(--pl-display);
	font-size: clamp(15px, 1.5vw, 18px);
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--pl-cream);
	flex: none;
	max-width: 74%;
}
.pl-v { color: var(--pl-brass); font-size: .8em; letter-spacing: .1em; }
.pl-roast__dots {
	flex: 1;
	height: 1px;
	margin-bottom: 4px;
	background-image: radial-gradient(circle, var(--pl-faint) 1px, transparent 1px);
	background-size: 6px 1px;
	background-repeat: repeat-x;
	opacity: .5;
}
.pl-roast__p {
	font-family: var(--pl-display);
	font-size: clamp(15px, 1.5vw, 18px);
	color: var(--pl-brass);
	flex: none;
}
.pl-roast__extra { font-size: 14.5px; color: var(--pl-muted); margin-bottom: .8em; }

.pl-menu {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
	gap: clamp(24px, 3.4vw, 50px);
	padding-top: clamp(30px, 4vw, 48px);
	border-top: 1px solid var(--pl-line);
}
.pl-menu__head {
	font-family: var(--pl-display);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .24em;
	color: var(--pl-brass);
	padding-bottom: 14px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--pl-brass-dim);
}
.pl-menu__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.pl-menu__n {
	display: block;
	font-family: var(--pl-display);
	font-size: 17px;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--pl-cream);
	margin-bottom: 3px;
}
.pl-menu__d { display: block; font-size: 14px; color: var(--pl-muted); line-height: 1.5; }
.pl-menu__note {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px dashed var(--pl-line);
	font-size: 13px;
	font-style: italic;
	color: var(--pl-faint);
	line-height: 1.55;
}
.pl-menu__foot {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-top: clamp(30px, 4vw, 44px);
	padding-top: 24px;
	border-top: 1px solid var(--pl-line);
	font-size: 14px;
	color: var(--pl-muted);
}
.pl-menu__foot .pl-icon { width: 22px; height: 22px; margin-top: 2px; }

/* -------------------------------------------------------------------------
   13b. Poster wall
   ---------------------------------------------------------------------- */

.pl-posters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: clamp(20px, 3vw, 40px);
	max-width: 880px;
}
.pl-poster { margin: 0; }
.pl-poster img {
	width: 100%;
	border-radius: var(--pl-r-lg);
	border: 1px solid var(--pl-line-2);
	box-shadow: 0 26px 54px -28px rgba(0, 0, 0, .95);
	transition: transform .5s var(--pl-ease);
}
.pl-poster:hover img { transform: translateY(-4px); }
.pl-poster figcaption { display: flex; flex-direction: column; gap: 4px; margin-top: 18px; }
.pl-poster__t {
	font-family: var(--pl-display);
	font-size: 17px;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: var(--pl-cream);
}
.pl-poster__m { font-size: 13.5px; color: var(--pl-brass); }

/* -------------------------------------------------------------------------
   14. Board
   ---------------------------------------------------------------------- */

.pl-board {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
	gap: clamp(28px, 4.5vw, 64px);
	align-items: center;
}
.pl-board__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.pl-board__media { margin: 0; position: relative; }
.pl-board__media img {
	width: 100%;
	/* Matches the source photograph, so the board's heading isn't cropped. */
	aspect-ratio: 1055 / 1289;
	object-fit: cover;
	object-position: center;
	border-radius: var(--pl-r-lg);
	border: 1px solid var(--pl-line-2);
	box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .95);
	transform: rotate(-1.1deg);
}
.pl-board__media figcaption {
	margin-top: 18px;
	font-family: var(--pl-display);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .17em;
	color: var(--pl-faint);
	text-align: center;
}

/* -------------------------------------------------------------------------
   15. Social / Facebook
   ---------------------------------------------------------------------- */

/* Facebook's Page Plugin caps at 500px wide, so give its column exactly that
   rather than letting a white iframe float in a wider dark one. */
.pl-social-grid {
	display: grid;
	grid-template-columns: minmax(0, 524px) minmax(0, 1fr);
	gap: clamp(26px, 3.4vw, 46px);
	align-items: start;
}
.pl-social-grid--solo { grid-template-columns: minmax(0, 524px); }

.pl-fb {
	max-width: 524px;
	background: var(--pl-panel);
	border: 1px solid var(--pl-line-2);
	border-radius: var(--pl-r-lg);
	overflow: hidden;
	box-shadow: 0 30px 60px -36px rgba(0, 0, 0, .95);
}
.pl-fb__chrome {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: var(--pl-char);
	border-bottom: 1px solid var(--pl-line);
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 11.5px;
	color: var(--pl-faint);
	letter-spacing: .02em;
}
.pl-fb__dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--pl-brass);
	box-shadow: 0 0 10px rgba(214, 160, 60, .6);
	flex: none;
}
.pl-fb__frame {
	position: relative;
	min-height: 320px;
	background: #fff;
}
.pl-fb__frame iframe { display: block; width: 100% !important; border: 0; }
.pl-fb__note { padding: 28px; color: #333; font-size: 14px; }

.pl-social-side {
	background: linear-gradient(170deg, var(--pl-raised), var(--pl-panel));
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-r-lg);
	padding: clamp(24px, 2.6vw, 34px);
}
.pl-social-side > p { font-size: 15px; color: var(--pl-muted); }
.pl-social-list { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 2px; }
.pl-social-list a {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 14px 16px;
	border-radius: var(--pl-r);
	border: 1px solid transparent;
	background: rgba(242, 236, 224, .022);
	transition: background .22s var(--pl-ease), border-color .22s var(--pl-ease), transform .22s var(--pl-ease);
}
.pl-social-list a:hover {
	background: var(--pl-brass-dim);
	border-color: rgba(214, 160, 60, .28);
	transform: translateX(3px);
}
.pl-social-list__k {
	font-family: var(--pl-display);
	font-size: 10.5px;
	text-transform: uppercase;
	letter-spacing: .2em;
	color: var(--pl-brass);
}
.pl-social-list__v { font-size: 14.5px; color: var(--pl-cream); }
.pl-social-side__tip {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13.5px;
	color: var(--pl-faint);
	margin: 0;
	padding-top: 20px;
	border-top: 1px solid var(--pl-line);
}
.pl-social-side__tip .pl-icon { width: 17px; height: 17px; margin-top: 2px; }

/* Instagram grid */
.pl-ig {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pl-ig a { position: relative; display: block; overflow: hidden; border-radius: var(--pl-r); }
.pl-ig img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	filter: saturate(.8) brightness(.8);
	transition: transform .55s var(--pl-ease), filter .35s var(--pl-ease);
}
.pl-ig a:hover img { transform: scale(1.07); filter: saturate(1) brightness(1); }
.pl-ig__ov {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(11, 11, 12, .55);
	opacity: 0;
	transition: opacity .3s var(--pl-ease);
}
.pl-ig a:hover .pl-ig__ov { opacity: 1; }
.pl-ig__ov .pl-icon { width: 26px; height: 26px; }
.pl-ig__cta { margin-top: 26px; }

/* -------------------------------------------------------------------------
   16. Gallery wall
   ---------------------------------------------------------------------- */

.pl-wall {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	grid-auto-rows: 168px;
	gap: 10px;
}
.pl-wall__i { margin: 0; overflow: hidden; border-radius: var(--pl-r); position: relative; }
.pl-wall__i img {
	width: 100%; height: 100%;
	object-fit: cover;
	filter: saturate(.76) brightness(.78) contrast(1.08);
	transition: transform .7s var(--pl-ease), filter .4s var(--pl-ease);
}
.pl-wall__i:hover img { transform: scale(1.06); filter: saturate(1) brightness(1) contrast(1); }
.pl-wall__i::after {
	content: "";
	position: absolute;
	inset: 0;
	box-shadow: inset 0 0 0 1px var(--pl-line);
	border-radius: var(--pl-r);
	pointer-events: none;
}
/* A little rhythm so it doesn't read as a spreadsheet. */
.pl-wall__i--0 { grid-row: span 2; }
.pl-wall__i--3 { grid-column: span 2; }
.pl-wall__i--5 { grid-row: span 2; }

/* -------------------------------------------------------------------------
   17. Venue / points / steps
   ---------------------------------------------------------------------- */

.pl-points { margin-bottom: clamp(34px, 4vw, 54px); }
.pl-point { display: flex; gap: 16px; align-items: flex-start; }
.pl-point > .pl-icon { width: 26px; height: 26px; margin-top: 3px; }
.pl-point p { font-size: 15px; color: var(--pl-muted); margin: 0; }

.pl-steps {
	background: linear-gradient(160deg, var(--pl-raised), var(--pl-panel));
	border: 1px solid var(--pl-line);
	border-radius: var(--pl-r-lg);
	padding: clamp(26px, 3.4vw, 46px);
}
.pl-steps ol { counter-reset: s; list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 18px; }
.pl-steps li {
	counter-increment: s;
	position: relative;
	padding-left: 52px;
	font-size: 15.5px;
	color: var(--pl-text);
}
.pl-steps li::before {
	content: counter(s, decimal-leading-zero);
	position: absolute;
	left: 0; top: -2px;
	font-family: var(--pl-display);
	font-size: 13px;
	letter-spacing: .1em;
	color: var(--pl-brass);
	background: var(--pl-brass-dim);
	border: 1px solid rgba(214, 160, 60, .25);
	width: 34px; height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
}
.pl-steps__cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }

/* -------------------------------------------------------------------------
   18. Find us
   ---------------------------------------------------------------------- */

.pl-find {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: start;
}
.pl-find__info { display: grid; gap: 26px; }
.pl-find__info p { font-size: 15px; color: var(--pl-muted); margin: 0; }
.pl-find__cta { margin-top: 4px; }
.pl-find__map {
	position: relative;
	border-radius: var(--pl-r-lg);
	overflow: hidden;
	border: 1px solid var(--pl-line-2);
	aspect-ratio: 4 / 3.1;
	background: var(--pl-panel);
}
.pl-find__map iframe {
	width: 100%; height: 100%;
	border: 0;
	/* Google's light map is a searchlight on a dark page — tone it down. */
	filter: invert(92%) hue-rotate(180deg) saturate(.7) contrast(.92) brightness(.92);
}

/* -------------------------------------------------------------------------
   19. Band + brands
   ---------------------------------------------------------------------- */

.pl-band {
	background: linear-gradient(100deg, var(--pl-brass-lo), var(--pl-brass) 45%, var(--pl-brass-hi));
	color: #16120a;
	padding-block: clamp(44px, 6vw, 76px);
	position: relative;
	overflow: hidden;
}
.pl-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: .09;
	mix-blend-mode: multiply;
}
.pl-band__inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 26px;
}
.pl-band .pl-h2 { color: #16120a; margin-bottom: .2em; }
.pl-band p { color: rgba(22, 18, 10, .78); margin: 0; max-width: 46ch; font-size: 16px; }
.pl-band__actions { display: flex; flex-wrap: wrap; gap: 13px; }

.pl-sec--brands { padding-block: clamp(40px, 5vw, 62px); background: var(--pl-char); }
.pl-brands__title,
.pl-brands__foot {
	text-align: center;
	font-family: var(--pl-display);
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: .24em;
	color: var(--pl-faint);
	margin: 0 0 30px;
}
.pl-brands__foot { margin: 30px 0 0; letter-spacing: .1em; text-transform: none; font-size: 13px; }
/* Twelve brands wrap raggedly under flex; an explicit grid keeps the rows
   even and the optical weight consistent. */
.pl-brands {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: center;
	gap: clamp(20px, 2.6vw, 38px) clamp(16px, 2.4vw, 40px);
	list-style: none;
	margin: 0;
	padding: 0;
}
@media (min-width: 620px)  { .pl-brands { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .pl-brands { grid-template-columns: repeat(6, 1fr); } }

.pl-brands__i { display: grid; place-items: center; min-height: 44px; }
/*
 * Artwork is pre-normalised: white silhouette, area-matched, centred on an
 * identical 320x120 canvas. So a single width is all the sizing needed, and
 * opacity alone does the dimming.
 */
.pl-brands__i img {
	width: 100%;
	max-width: clamp(104px, 11vw, 132px);
	height: auto;
	opacity: .5;
	transition: opacity .3s var(--pl-ease);
}
.pl-brands__i:hover img { opacity: .95; }
.pl-brands__i--txt {
	font-family: var(--pl-display);
	font-size: clamp(12px, 1.25vw, 15px);
	text-transform: uppercase;
	letter-spacing: .11em;
	text-align: center;
	color: var(--pl-text);
	opacity: .62;
	transition: opacity .3s var(--pl-ease), color .3s var(--pl-ease);
}
.pl-brands__i--txt:hover { opacity: 1; color: var(--pl-brass); }

/* -------------------------------------------------------------------------
   20. Build-log timeline
   ---------------------------------------------------------------------- */

.pl-tl { position: relative; max-width: 860px; }
.pl-tl::before {
	content: "";
	position: absolute;
	left: 13px; top: 8px; bottom: 8px;
	width: 1px;
	background: linear-gradient(to bottom, transparent, var(--pl-line-2) 6%, var(--pl-line-2) 94%, transparent);
}
.pl-tl__i { position: relative; display: grid; grid-template-columns: 28px 1fr; gap: clamp(18px, 2.4vw, 32px); padding-bottom: clamp(34px, 4.4vw, 56px); }
.pl-tl__i:last-child { padding-bottom: 0; }
.pl-tl__marker { position: relative; padding-top: 7px; }
.pl-tl__dot {
	display: block;
	width: 11px; height: 11px;
	margin-left: 8px;
	border-radius: 50%;
	background: var(--pl-black);
	border: 1px solid var(--pl-brass);
	box-shadow: 0 0 0 4px var(--pl-black), 0 0 16px rgba(214, 160, 60, .45);
}
.pl-tl__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 0 0 8px; }
.pl-tl__phase {
	font-family: var(--pl-display);
	font-size: 10.5px;
	text-transform: uppercase;
	letter-spacing: .2em;
	color: var(--pl-brass);
	background: var(--pl-brass-dim);
	border: 1px solid rgba(214, 160, 60, .22);
	padding: 5px 11px;
	border-radius: 100px;
}
.pl-tl__meta time {
	font-family: var(--pl-display);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .18em;
	color: var(--pl-faint);
}
.pl-tl__body > .pl-h3 { margin-bottom: 12px; }
.pl-tl__text p { font-size: 15.5px; color: var(--pl-text); }
.pl-tl__text ul { margin: 0 0 1.15em; padding-left: 0; display: grid; gap: 9px; }
.pl-tl__text li {
	position: relative;
	padding-left: 20px;
	font-size: 15px;
	color: var(--pl-text);
}
.pl-tl__text li::before {
	content: "";
	position: absolute;
	left: 3px; top: .62em;
	width: 5px; height: 5px;
	border-radius: 50%;
	background: var(--pl-brass);
	opacity: .75;
}
.pl-tl__tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 16px 0 0; padding: 0; }
.pl-tl__tags li {
	font-family: ui-monospace, 'SF Mono', Menlo, monospace;
	font-size: 10.5px;
	letter-spacing: .06em;
	color: var(--pl-muted);
	border: 1px solid var(--pl-line);
	padding: 4px 9px;
	border-radius: 3px;
}

/* -------------------------------------------------------------------------
   21. Footer
   ---------------------------------------------------------------------- */

.pl-footer {
	background: var(--pl-char);
	border-top: 1px solid var(--pl-line);
	padding-block: clamp(50px, 7vw, 86px) 0;
	position: relative;
}
.pl-footer::before {
	content: "";
	position: absolute;
	inset-inline: 0; top: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, var(--pl-brass-dim) 35%, var(--pl-brass-dim) 65%, transparent);
}
.pl-footer__top {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
	gap: clamp(28px, 3.6vw, 52px);
	padding-bottom: clamp(40px, 5vw, 64px);
}
.pl-footer__brand .pl-logo { margin-bottom: 20px; }
.pl-logo--footer .pl-logo__mark { height: 46px; }
.pl-footer__blurb { font-size: 14.5px; color: var(--pl-muted); max-width: 40ch; margin-bottom: 22px; }

.pl-footer__h {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: .22em;
	color: var(--pl-brass);
	margin-bottom: 20px;
}
.pl-footer__hours { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 7px; }
.pl-footer__hours li { display: flex; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--pl-muted); }
.pl-footer__hours li.is-today { color: var(--pl-cream); }
.pl-footer__hours li.is-today span:last-child { color: var(--pl-brass); }
.pl-footer__note { font-size: 12.5px; color: var(--pl-faint); margin: 0; }

.pl-footer__nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pl-footer__nav a { font-size: 14.5px; color: var(--pl-text) !important; }
.pl-footer__nav a:hover { color: var(--pl-brass) !important; }
.pl-footer__nav .current-menu-item > a { color: var(--pl-brass) !important; }

.pl-footer__addr { font-style: normal; font-size: 14.5px; color: var(--pl-muted); margin-bottom: 14px; line-height: 1.7; }
.pl-footer__contact { font-size: 14.5px; margin-bottom: 20px; line-height: 1.9; }

.pl-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-block: 24px;
	border-top: 1px solid var(--pl-line);
	font-size: 12.5px;
	color: var(--pl-faint);
}
.pl-footer__bottom p { margin: 0; }
.pl-footer__legal { display: flex; align-items: center; gap: 10px; }

/* Sticky mobile call button */
.pl-callnow {
	display: none;
	position: fixed;
	left: 50%;
	bottom: calc(16px + env(safe-area-inset-bottom, 0px));
	transform: translateX(-50%);
	z-index: 880;
	align-items: center;
	gap: 9px;
	padding: 13px 24px;
	border-radius: 100px;
	background: linear-gradient(175deg, var(--pl-brass-hi), var(--pl-brass) 58%, var(--pl-brass-lo));
	color: #16120a !important;
	font-family: var(--pl-display);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .14em;
	box-shadow: 0 12px 30px -10px rgba(0, 0, 0, .9);
}
.pl-callnow .pl-icon { width: 16px; height: 16px; color: #16120a; }

/* Placeholder when a photo is missing */
.pl-ph {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--pl-r-lg);
	background:
		repeating-linear-gradient(135deg, rgba(242, 236, 224, .03) 0 10px, transparent 10px 20px),
		var(--pl-panel);
	border: 1px solid var(--pl-line);
}

/* -------------------------------------------------------------------------
   22. Responsive
   ---------------------------------------------------------------------- */

@media (max-width: 1080px) {
	.pl-footer__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pl-footer__brand { grid-column: 1 / -1; }
}

/* Seven nav items plus the logo and CTA stop fitting before the layout
   itself needs to stack, so the burger arrives earlier than the grid change. */
@media (max-width: 1120px) {
	.pl-nav { display: none; }
	.pl-burger { display: block; }
}

@media (max-width: 960px) {
	.pl-intro,
	.pl-food,
	.pl-board,
	.pl-find,
	.pl-roast,
	.pl-hours__grid,
	.pl-social-grid { grid-template-columns: minmax(0, 1fr); }
	.pl-roast__media { max-width: 340px; margin-inline: auto; }
	.pl-food__media { max-width: 420px; margin-inline: auto; }
	.pl-intro__media { order: -1; }
	.pl-board__media img { transform: none; aspect-ratio: 4 / 3.6; }
	.pl-social-grid--solo { max-width: none; }
	.pl-stamp { width: 104px; right: 10px; bottom: -14px; }
}

@media (max-width: 760px) {
	.pl-header__strip { display: none; }
	.pl-header__actions .pl-btn { display: none; }
	.pl-callnow { display: inline-flex; }
	.pl-footer { padding-bottom: 76px; }
	.pl-wall { grid-auto-rows: 132px; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
	.pl-wall__i--3 { grid-column: span 1; }
	.pl-reviews__cta { flex-direction: column; align-items: flex-start; }
	.pl-band__inner { flex-direction: column; align-items: flex-start; }
	.pl-footer__top { grid-template-columns: minmax(0, 1fr); }
	.pl-hero { background-position: center 30%; }
}

@media (max-width: 520px) {
	/* The eyebrow's wide tracking runs past the gutter on a phone. */
	.pl-hero__eyebrow {
		flex-wrap: wrap;
		font-size: 10.5px;
		letter-spacing: .15em;
	}
	.pl-hero__eyebrow .pl-rule { width: 22px; }
}

@media (max-width: 420px) {
	.pl-logo__name { font-size: 21px; }
	.pl-logo__mark { height: 34px; }
	.pl-hero__actions .pl-btn { width: 100%; }
}

/* -------------------------------------------------------------------------
   23. Motion preferences
   ---------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
	body.plough *,
	body.plough *::before,
	body.plough *::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
	.pl-ticker__track { animation: none; }
	.pl-hero__scroll { display: none; }
}

@media print {
	body.plough::after,
	.pl-header, .pl-footer, .pl-callnow, .pl-ticker, .pl-drawer { display: none !important; }
	body.plough { background: #fff; color: #000; }
}
