@charset "UTF-8";

:root {
	--brand-yellow: #feff99;
	--brand-gray: #666666;
	--text: #444444;
	--text-light: #fbfbfb;
	--shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	--radius: 14px;
	--max: 1100px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Segoe UI", Verdana, Geneva, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text);
	background: #f4f4f4;
}

a {
	color: inherit;
}

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

.site-header {
	background: #fff;
	border-bottom: 3px solid var(--brand-yellow);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-inner,
.nav-inner,
.content-wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.header-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 0 1rem;
}

.logo {
	width: min(100%, 320px);
}

.phone-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--brand-gray);
	color: var(--text-light);
	text-decoration: none;
	padding: 0.85rem 1.1rem;
	border-radius: 999px;
	font-weight: 700;
	white-space: nowrap;
}

.phone-btn:hover {
	background: #555;
}

.site-nav {
	background: var(--brand-gray);
}

.site-nav ul {
	list-style: none;
	margin: 0;
	padding: 0.4rem 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.35rem 1.5rem;
}

.site-nav a {
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	padding: 0.45rem 0;
}

.site-nav a:hover {
	text-decoration: underline;
}

.hero {
	background: #fff;
	padding: 2rem 0 1.5rem;
	border-bottom: 1px solid #e8e8e8;
}

.hero-inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.eyebrow {
	display: block;
	color: #777;
	font-size: 1rem;
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.hero h1 {
	margin: 0 0 0.75rem;
	font-size: clamp(1.7rem, 4vw, 2.4rem);
	line-height: 1.2;
	color: #333;
}

.hero-lead {
	margin: 0;
	font-size: clamp(1.05rem, 2.5vw, 1.25rem);
	color: #555;
	max-width: 38rem;
}

.content-wrap {
	padding: 2rem 1.25rem 3rem;
}

.layout {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 1.5rem;
	align-items: start;
}

.card {
	background: #fff;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow: hidden;
}

.page-content {
	padding: 1.25rem 1.5rem 1.5rem;
}

.shop-photo img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.shop-caption {
	padding: 1rem 1.25rem 1.25rem;
}

.shop-caption h2 {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	color: #333;
}

.shop-caption p {
	margin: 0;
	color: #666;
	font-size: 0.95rem;
}

.lead-text {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	color: #555;
}

.legal-text {
	text-align: left;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #444;
}

.legal-text a {
	color: #555;
	text-decoration: underline;
}

.legal-text a:hover {
	text-decoration: none;
}

.sidebar-card {
	background: var(--brand-gray);
	color: var(--text-light);
	padding: 1.5rem;
	border-radius: var(--radius);
}

.sidebar-card h2 {
	margin: 0 0 1rem;
	font-size: 1.2rem;
}

.sidebar-card h3 {
	margin: 1.5rem 0 0.75rem;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--brand-yellow);
}

.services-intro {
	margin: 0 0 0.75rem;
}

.services-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.services-list li {
	position: relative;
	padding-left: 1.2rem;
	margin-bottom: 0.45rem;
}

.services-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: var(--brand-yellow);
	font-weight: 700;
}

.service-note {
	margin: 1rem 0 2rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #eee;
}

.service-note-warn {
	background: var(--brand-yellow);
	color: #333;
	font-weight: 700;
	padding: 0.75rem 0.9rem;
	border-radius: 8px;
	margin: 0 0 1rem;
}

.service-note-rest {
	margin: 0;
	color: #ddd;
}

.contact-block p {
	margin: 0 0 0.35rem;
}

.contact-block a {
	color: var(--brand-yellow);
}

.hours {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 0.9rem 1rem;
	margin-top: 0.5rem;
}

.cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.cta {
	display: inline-block;
	text-decoration: none;
	font-weight: 700;
	padding: 0.8rem 1.2rem;
	border-radius: 10px;
}

.cta-primary {
	background: var(--brand-yellow);
	color: #333;
}

.cta-primary:hover {
	background: #f5f680;
}

.site-footer {
	background: #333;
	color: #ddd;
	text-align: center;
	padding: 1rem 1.25rem 1.5rem;
	font-size: 0.9rem;
}

.site-footer a {
	color: var(--brand-yellow);
}

.footer-credit {
	margin: 0.65rem 0 0;
	font-size: 0.75rem;
	color: #999;
}

.footer-credit a {
	color: #aaa;
	text-decoration: none;
}

.footer-credit a:hover {
	color: #ccc;
	text-decoration: underline;
}

@media (max-width: 860px) {
	.header-top {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.layout {
		grid-template-columns: 1fr;
	}

	.site-nav ul {
		gap: 0.2rem 1rem;
	}
}
