:root
{
	--bg: #fffdf9;
	--bg-alt: #f4ede1;
	--bg-dark: #2a201a;
	--text: #2a201a;
	--text-muted: #6b5d50;
	--text-inverse: #f7f1e8;
	--accent: #9a3b2e;        /* warm terracotta */
	--accent-dark: #7a2c22;
	--gold: #b08436;
	--border: #e6dccb;
	--max-width: 1080px;
	--radius: 8px;
	--shadow-sm: 0 1px 2px rgba(42, 32, 26, 0.06);
	--shadow-md: 0 10px 26px rgba(42, 32, 26, 0.12);
	--serif: "Georgia", "Times New Roman", serif;
}

*
{
	box-sizing: border-box;
}

html
{
	scroll-behavior: smooth;
}

body
{
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: var(--text);
	background: var(--bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

a
{
	color: var(--accent);
	text-decoration: none;
}

a:hover
{
	text-decoration: underline;
}

.container
{
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */
.site-header
{
	position: sticky;
	top: 0;
	background: rgba(255, 253, 249, 0.94);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--border);
	z-index: 10;
}

.nav
{
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 68px;
}

.brand
{
	color: var(--text);
	font-family: var(--serif);
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: 0.02em;
}

.brand:hover
{
	text-decoration: none;
}

.site-header nav
{
	display: flex;
	align-items: center;
	gap: 24px;
}

.site-header nav a
{
	color: var(--text-muted);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.site-header nav a:hover
{
	color: var(--text);
	text-decoration: none;
}

.nav-cta
{
	background: var(--accent);
	color: #fff !important;
	padding: 9px 18px;
	border-radius: 999px;
}

.nav-cta:hover
{
	background: var(--accent-dark);
}

/* Hero */
.hero
{
	padding: 104px 0 88px;
	background: radial-gradient(1000px 420px at 70% -120px, rgba(176, 132, 54, 0.18), transparent 70%),
	linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
	border-bottom: 1px solid var(--border);
}

.eyebrow
{
	display: inline-block;
	margin: 0 0 16px;
	font-size: 0.82rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.hero h1
{
	font-family: var(--serif);
	font-weight: 700;
	font-size: clamp(2.2rem, 5.2vw, 3.6rem);
	line-height: 1.12;
	margin: 0 0 18px;
	max-width: 800px;
}

.hero .lede
{
	font-size: 1.18rem;
	color: var(--text-muted);
	max-width: 600px;
	margin: 0 0 32px;
}

.hero-actions
{
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-actions-center
{
	justify-content: center;
}

/* Buttons */
.btn
{
	display: inline-block;
	padding: 12px 24px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 1rem;
	border: 1px solid transparent;
	transition: transform 0.05s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover
{
	text-decoration: none;
	transform: translateY(-1px);
}

.btn-primary
{
	background: var(--accent);
	color: #fff;
	box-shadow: var(--shadow-sm);
}

.btn-primary:hover
{
	background: var(--accent-dark);
}

.btn-ghost
{
	background: transparent;
	color: var(--text);
	border-color: var(--text-muted);
}

.btn-ghost:hover
{
	border-color: var(--text);
}

.btn-large
{
	padding: 15px 30px;
	font-size: 1.05rem;
}

/* Sections */
.section
{
	padding: 84px 0;
}

.section-alt
{
	background: var(--bg-alt);
	border-top: 1px solid var(--border);
	border-bottom: 1px solid var(--border);
}

.section h2
{
	font-family: var(--serif);
	font-weight: 700;
	font-size: clamp(1.7rem, 3.2vw, 2.4rem);
	margin: 0 0 12px;
}

.section-lede
{
	color: var(--text-muted);
	font-size: 1.1rem;
	max-width: 640px;
	margin: 0 0 40px;
}

/* Menu */
.menu-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.menu-group h3
{
	font-family: var(--serif);
	font-size: 1.3rem;
	margin: 0 0 18px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--gold);
	display: inline-block;
}

.menu-list
{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 20px;
}

.menu-item
{
	display: flex;
	align-items: baseline;
	gap: 10px;
}

.menu-name
{
	font-weight: 600;
	color: var(--text);
}

.menu-item::after
{
	content: "";
	flex: 1;
	border-bottom: 1px dotted var(--border);
	transform: translateY(-4px);
}

.menu-price
{
	font-family: var(--serif);
	color: var(--accent);
	font-weight: 700;
}

.menu-desc
{
	margin: 4px 0 0;
	color: var(--text-muted);
	font-size: 0.98rem;
}

.menu-note
{
	margin-top: 36px;
	color: var(--text-muted);
	font-style: italic;
}

/* About */
.about-grid
{
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 40px;
	align-items: center;
}

.prose
{
	color: var(--text-muted);
	max-width: 60ch;
}

.about-card
{
	background: var(--bg);
	border: 1px solid var(--border);
	border-left: 4px solid var(--gold);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow-sm);
}

.quote
{
	font-family: var(--serif);
	font-size: 1.25rem;
	font-style: italic;
	color: var(--text);
	margin: 0 0 12px;
}

.quote-by
{
	margin: 0;
	color: var(--text-muted);
	font-weight: 600;
}

/* Visit */
.visit-grid
{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
}

.visit-card
{
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: var(--shadow-sm);
}

.visit-card h3
{
	font-family: var(--serif);
	font-size: 1.3rem;
	margin: 0 0 16px;
}

.hours
{
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 8px;
}

.hours li
{
	display: flex;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 1px dotted var(--border);
	padding-bottom: 6px;
	color: var(--text-muted);
}

.hours li span:first-child
{
	font-weight: 600;
	color: var(--text);
}

/* Contact */
.section-contact
{
	text-align: center;
	background: radial-gradient(900px 320px at 50% 0%, rgba(176, 132, 54, 0.12), transparent 70%),
	var(--bg);
}

.section-contact .section-lede
{
	margin-left: auto;
	margin-right: auto;
}

.contact-note
{
	margin-top: 18px;
	color: var(--text-muted);
}

/* Footer */
.site-footer
{
	background: var(--bg-dark);
	color: var(--text-inverse);
	padding: 26px 0;
}

.site-footer a
{
	color: var(--text-inverse);
}

.footer-row
{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.95rem;
}

/* Small screens */
@media (max-width: 540px)
{
	.site-header nav
	{
		gap: 14px;
	}

	.site-header nav a:not(.nav-cta)
	{
		display: none;
	}

	.hero
	{
		padding: 72px 0 60px;
	}

	.section
	{
		padding: 56px 0;
	}

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