:root {
	--sr-orange: #9b3f12;
	--sr-orange-dark: #7f310d;
	--sr-cream: #f4f1a4;
	--sr-black: #050505;
	--sr-heading: 'Bowlby One SC', Impact, 'Arial Black', sans-serif;
	--sr-body: 'Montserrat', Arial, sans-serif;
}

.sr-inner-page #page,
.sr-inner-page #content,
.sr-inner-page .site-content,
.sr-inner-page #primary,
.sr-inner-page .content-area,
.sr-inner-page .site-main,
.sr-inner-page .entry-content {
	width: 100%;
	max-width: none;
	margin: 0 !important;
	padding: 0 !important;
}

.sr-inner-page .site.container,
.sr-inner-page .site-content {
	max-width: none !important;
}

.sr-inner-main,
.sr-inner-main * {
	box-sizing: border-box;
}

.sr-inner-main {
	min-height: 60vh;
	background: #fff;
	color: #111;
	font-family: var(--sr-body);
}

.sr-inner-main img {
	display: block;
	max-width: 100%;
}

.sr-page-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 360px;
	padding: 110px 24px 80px;
	background-color: #20110b;
	background-image: var(--sr-page-hero, none);
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
	overflow: hidden;
}

.sr-page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.7));
}

.sr-page-hero__inner {
	position: relative;
	z-index: 1;
	width: min(100%, 1050px);
}

.sr-page-hero__logo {
	width: 105px;
	max-height: 95px;
	margin: 0 auto 20px;
	object-fit: contain;
}

.sr-page-hero h1,
.sr-coming-soon h1,
.sr-event-page h1,
.sr-story-copy h1,
.sr-menu-title {
	margin: 0;
	font-family: var(--sr-heading);
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 0.98;
	text-transform: uppercase;
}

.sr-page-hero h1 {
	font-size: clamp(50px, 7vw, 96px);
}

.sr-page-hero p {
	margin: 18px 0 0;
	font-size: clamp(18px, 2vw, 28px);
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.sr-texture-page {
	background-color: #fafaf9;
	background-image: url('assets/soft-speckle-texture.jpg');
	background-position: center top;
	background-repeat: repeat;
	background-size: 768px 768px;
}

/* Menu page */
.sr-menu-page {
	padding-bottom: 90px;
}

.sr-menu-nav {
	position: sticky;
	top: var(--sr-header-height-scrolled, 68px);
	z-index: 20;
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 14px 20px;
	background: var(--sr-orange);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
	overflow-x: auto;
}

.sr-menu-nav a {
	flex: 0 0 auto;
	padding: 9px 14px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #fff;
	font-family: var(--sr-heading);
	font-size: 12px;
	text-decoration: none;
	text-transform: uppercase;
}

.sr-menu-nav a:hover,
.sr-menu-nav a:focus {
	background: #fff;
	color: var(--sr-orange);
}

.sr-menu-intro {
	width: min(100% - 40px, 1080px);
	margin: 0 auto;
	padding: 58px 0 26px;
	text-align: center;
}

.sr-menu-title {
	font-size: clamp(46px, 6vw, 78px);
}

.sr-menu-intro p {
	max-width: 880px;
	margin: 18px auto 0;
	font-size: 15px;
	line-height: 1.65;
}

.sr-menu-section {
	width: min(100% - 40px, 1180px);
	margin: 34px auto 0;
	padding: 42px clamp(22px, 4vw, 52px) 48px;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 12px 38px rgba(57, 24, 8, 0.1);
}

.sr-menu-section__heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 28px;
	padding-bottom: 16px;
	border-bottom: 3px solid var(--sr-orange);
}

.sr-menu-section__heading h2 {
	margin: 0;
	font-family: var(--sr-heading);
	font-size: clamp(32px, 4vw, 50px);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.sr-menu-section__note {
	max-width: 680px;
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	text-align: right;
}

.sr-menu-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 46px;
}

.sr-menu-item {
	position: relative;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(155, 63, 18, 0.16);
}

.sr-menu-item__top {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 18px;
}

.sr-menu-item h3 {
	margin: 0;
	font-family: var(--sr-heading);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	text-transform: uppercase;
}

.sr-menu-item__price {
	flex: 0 0 auto;
	color: var(--sr-orange);
	font-size: 17px;
	font-weight: 700;
}

.sr-menu-item p {
	margin: 9px 0 0;
	font-size: 14px;
	line-height: 1.6;
}

.sr-menu-photo-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	height: 270px;
	margin-top: 44px;
	background: #111;
}

.sr-menu-photo-strip img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Coming-soon pages */
.sr-coming-soon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 620px;
	padding: 80px 24px;
	text-align: center;
}

.sr-coming-soon__card {
	width: min(100%, 860px);
	padding: clamp(54px, 8vw, 100px) clamp(28px, 7vw, 90px);
	background: #fff;
	box-shadow: 0 18px 60px rgba(61, 24, 7, 0.13);
}

.sr-coming-soon__logo {
	width: 105px;
	margin: 0 auto 25px;
}

.sr-coming-soon h1 {
	font-size: clamp(48px, 7vw, 86px);
}

.sr-coming-soon h2 {
	margin: 28px 0 8px;
	font-family: var(--sr-body);
	font-size: clamp(25px, 3vw, 38px);
	font-weight: 600;
}

.sr-coming-soon p {
	margin: 0;
	font-size: clamp(18px, 2vw, 24px);
}

/* Events */
.sr-event-page {
	padding: 74px 20px 100px;
}

.sr-event-shell {
	width: min(100%, 1050px);
	margin: 0 auto;
}

.sr-event-page h1 {
	margin-bottom: 38px;
	font-size: clamp(48px, 6vw, 80px);
	text-align: center;
}

.sr-event-card {
	display: grid;
	grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
	background: #fff;
	box-shadow: 0 18px 55px rgba(59, 23, 6, 0.14);
	overflow: hidden;
}

.sr-event-card__visual {
	min-height: 430px;
	background-color: var(--sr-orange);
	background-image: var(--sr-event-image, none);
	background-position: center;
	background-size: cover;
}

.sr-event-card__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(40px, 6vw, 80px);
}

.sr-event-card__eyebrow {
	margin: 0 0 12px;
	color: var(--sr-orange);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sr-event-card h2 {
	margin: 0;
	font-family: var(--sr-heading);
	font-size: clamp(42px, 5vw, 68px);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.sr-event-card h3 {
	margin: 22px 0 0;
	font-size: 24px;
	font-weight: 600;
}

.sr-event-card p {
	margin: 18px 0 0;
	font-size: 17px;
	line-height: 1.65;
}

.sr-event-card__time {
	color: var(--sr-orange);
	font-weight: 700;
}

/* Our Story */
.sr-story-page {
	background: #fff;
}

.sr-story-slider {
	position: relative;
	height: min(67vh, 650px);
	min-height: 460px;
	background: #111;
	overflow: hidden;
}

.sr-story-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 650ms ease, visibility 650ms ease;
}

.sr-story-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.sr-story-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sr-story-slider__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.34);
	color: #fff;
	text-align: center;
}

.sr-story-slider__overlay h1 {
	margin: 0;
	font-family: var(--sr-heading);
	font-size: clamp(48px, 7vw, 92px);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.sr-story-slider__overlay p {
	margin: 12px 0 0;
	font-size: clamp(18px, 2vw, 28px);
	text-transform: uppercase;
}

.sr-story-slider__controls {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: 26px;
	display: flex;
	gap: 10px;
	transform: translateX(-50%);
}

.sr-story-slider__dot {
	width: 15px;
	height: 15px;
	padding: 0;
	border: 2px solid #fff;
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.sr-story-slider__dot.is-active {
	background: var(--sr-cream);
}

.sr-story-copy {
	width: min(100% - 40px, 970px);
	margin: 0 auto;
	padding: 78px 0 90px;
}

.sr-story-copy h1 {
	margin-bottom: 30px;
	font-size: clamp(48px, 6vw, 78px);
	text-align: center;
}

.sr-story-copy p {
	margin: 0 0 22px;
	font-size: 17px;
	line-height: 1.8;
}

.sr-story-copy__contact {
	margin-top: 34px !important;
	padding: 24px;
	background: var(--sr-orange);
	color: #fff;
	text-align: center;
}

.sr-story-copy__contact a {
	color: var(--sr-cream);
}

@media (max-width: 900px) {
	.sr-menu-grid {
		grid-template-columns: 1fr;
	}

	.sr-menu-section__heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.sr-menu-section__note {
		text-align: left;
	}

	.sr-menu-photo-strip {
		grid-template-columns: repeat(2, 1fr);
		height: 420px;
	}

	.sr-event-card {
		grid-template-columns: 1fr;
	}

	.sr-event-card__visual {
		min-height: 330px;
	}
}

@media (max-width: 620px) {
	.sr-page-hero {
		min-height: 300px;
		padding-top: 80px;
	}

	.sr-menu-nav {
		justify-content: flex-start;
	}

	.sr-menu-section {
		width: min(100% - 24px, 1180px);
		padding: 34px 20px 38px;
	}

	.sr-menu-photo-strip {
		height: 320px;
	}

	.sr-coming-soon {
		min-height: 500px;
	}

	.sr-story-slider {
		height: 520px;
		min-height: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sr-story-slide {
		transition: none;
	}
}


/* --------------------------------------------------------------------------
 * Our Story page — split layout matching the original restaurant site
 * -------------------------------------------------------------------------- */
.sr-story-page {
	background: #fff;
	overflow: hidden;
}

.sr-about-intro {
	display: grid;
	grid-template-columns: 40% 60%;
	min-height: 520px;
}

.sr-about-intro__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 520px;
	padding: 60px 36px;
	background: #eef1a2;
	color: #080808;
	text-align: center;
}

.sr-about-intro__copy h1,
.sr-about-story__copy h2 {
	margin: 0;
	font-family: var(--sr-heading);
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: uppercase;
}

.sr-about-intro__copy h1 {
	font-size: clamp(45px, 5.4vw, 79px);
}

.sr-about-intro__copy p {
	margin: 30px 0 0;
	font-size: clamp(17px, 1.45vw, 23px);
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.sr-story-slider {
	position: relative;
	height: auto;
	min-width: 0;
	min-height: 520px;
	background: #17120f;
	overflow: hidden;
	touch-action: pan-y;
}

.sr-story-slider__viewport {
	position: absolute;
	inset: 0;
}

.sr-story-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transform: scale(1.015);
	transition: opacity 700ms ease, visibility 700ms ease, transform 5.8s ease;
	pointer-events: none;
}

.sr-story-slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1.055);
	pointer-events: auto;
}

.sr-story-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sr-story-slider__controls {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	display: flex;
	transform: none;
	align-items: center;
	justify-content: center;
	gap: 15px;
	min-height: 62px;
	padding: 12px 20px;
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.48));
}

.sr-story-slider__toggle {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
}

.sr-story-slider__play {
	display: none;
}

.sr-story-slider__toggle.is-paused .sr-story-slider__pause {
	display: none;
}

.sr-story-slider__toggle.is-paused .sr-story-slider__play {
	display: inline;
}

.sr-story-slider__dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.sr-story-slider__dot {
	width: 20px;
	height: 20px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.65);
	cursor: pointer;
	transition: transform 160ms ease, background-color 160ms ease;
}

.sr-story-slider__dot.is-active {
	background: var(--sr-orange);
	transform: scale(1.08);
}

.sr-story-slider__toggle:focus-visible,
.sr-story-slider__dot:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

.sr-about-story {
	display: grid;
	grid-template-columns: 40% 60%;
	align-items: stretch;
}

.sr-about-story__image {
	min-height: 700px;
	background: #191919;
	overflow: hidden;
}

.sr-about-story__image img {
	width: 100%;
	height: 100%;
	min-height: 700px;
	object-fit: cover;
	object-position: center;
}

.sr-about-story__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 700px;
	padding: clamp(58px, 6vw, 96px) clamp(44px, 6vw, 92px);
	color: #111;
}

.sr-about-story__copy h2 {
	margin-bottom: 28px;
	font-size: clamp(48px, 5vw, 76px);
}

.sr-about-story__copy p {
	max-width: 860px;
	margin: 0 0 20px;
	font-size: clamp(15px, 1.25vw, 20px);
	line-height: 1.45;
}

.sr-about-map {
	position: relative;
	height: 410px;
	min-height: 410px;
	background: #d7d7d7;
	overflow: hidden;
}

.sr-about-map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 410px;
	border: 0;
}

.sr-about-map__contact {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 16px 20px;
	background: rgba(31, 34, 38, 0.74);
	color: #fff;
	font-size: clamp(15px, 1.4vw, 21px);
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.sr-about-map__contact a {
	color: #fff;
	text-decoration: none;
}

.sr-about-map__contact a:hover,
.sr-about-map__contact a:focus {
	color: var(--sr-cream);
	text-decoration: underline;
}

/* About-page entrance motion. Content stays visible unless JavaScript adds
   the ready class, protecting the page if scripts are unavailable. */
html.sr-story-motion-ready .sr-about-intro__copy,
html.sr-story-motion-ready .sr-story-slider,
html.sr-story-motion-ready .sr-about-story__image,
html.sr-story-motion-ready .sr-about-story__copy {
	opacity: 0;
	will-change: transform, opacity;
}

html.sr-story-motion-ready .sr-about-intro__copy,
html.sr-story-motion-ready .sr-about-story__image {
	transform: translate3d(-72px, 0, 0);
}

html.sr-story-motion-ready .sr-story-slider,
html.sr-story-motion-ready .sr-about-story__copy {
	transform: translate3d(72px, 0, 0);
}

html.sr-story-motion-ready .sr-about-intro__copy.is-visible,
html.sr-story-motion-ready .sr-story-slider.is-visible,
html.sr-story-motion-ready .sr-about-story__image.is-visible,
html.sr-story-motion-ready .sr-about-story__copy.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), opacity 700ms ease;
}

@media (max-width: 900px) {
	.sr-about-intro,
	.sr-about-story {
		grid-template-columns: 1fr;
	}

	.sr-about-intro__copy,
	.sr-story-slider {
		min-height: 420px;
	}

	.sr-about-story__image,
	.sr-about-story__image img {
		min-height: 580px;
	}

	.sr-about-story__copy {
		min-height: 0;
		padding: 58px 34px 64px;
	}
}

@media (max-width: 600px) {
	.sr-about-intro__copy {
		min-height: 320px;
		padding: 48px 24px;
	}

	.sr-story-slider {
		min-height: 360px;
	}

	.sr-about-story__image,
	.sr-about-story__image img {
		min-height: 480px;
	}

	.sr-about-story__copy {
		padding: 48px 24px 52px;
	}

	.sr-about-map,
	.sr-about-map iframe {
		height: 350px;
		min-height: 350px;
	}

	.sr-about-map__contact {
		font-size: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sr-story-slide,
	html.sr-story-motion-ready .sr-about-intro__copy,
	html.sr-story-motion-ready .sr-story-slider,
	html.sr-story-motion-ready .sr-about-story__image,
	html.sr-story-motion-ready .sr-about-story__copy {
		transition: none !important;
		transform: none !important;
	}
}

/* Mobile header/logo clearance for the first Our Story panel. */
@media (max-width: 782px) {
	.sr-about-intro__copy {
		min-height: 350px;
		padding-top: 82px;
		padding-bottom: 48px;
	}
}

@media (max-width: 480px) {
	.sr-about-intro__copy {
		min-height: 350px;
		padding-top: 78px;
		padding-bottom: 44px;
	}
}
