
:root {
--cream: #f5efe0;
--parchment: #e8dcc8;
--bark: #4a3728;
--pine: #2d4a35;
--red: #b83225;
--gold: #c8922a;
--ink: #1a1208;
--mist: #8fa89a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
background-color: var(--cream);
color: var(--ink);
font-family: 'Libre Baskerville', Georgia, serif;
overflow-x: hidden;
}

/* Texture overlay */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 100;
opacity: 0.6;
}

/* ─── HEADER ─── */
header {
background-color: var(--pine);
position: relative;
overflow: hidden;
padding: 0;
}

.header-stripe {
background: var(--red);
height: 8px;
}

.header-inner {
padding: 60px 40px 50px;
text-align: center;
position: relative;
}

.logo-img {
max-width: 600px;
width: 70%;
filter: none;
animation: fadeDown 0.9s ease both;
margin-bottom: 10px;
}

.store-sub {
font-family: 'Special Elite', serif;
color: var(--mist);
font-size: clamp(13px, 2.5vw, 17px);
letter-spacing: 6px;
text-transform: uppercase;
margin-top: 8px;
animation: fadeDown 0.9s 0.15s ease both;
opacity: 0;
animation-fill-mode: forwards;
}

.header-badges {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
margin-top: 36px;
animation: fadeUp 0.9s 0.3s ease both;
opacity: 0;
animation-fill-mode: forwards;
}

.badge {
border: 2px solid var(--gold);
border-radius: 4px;
padding: 8px 20px;
color: var(--gold);
font-family: 'Special Elite', serif;
font-size: 13px;
letter-spacing: 2px;
text-transform: uppercase;
}

/* ─── NAV ─── */
nav {
background: var(--bark);
display: flex;
justify-content: center;
gap: 0;
flex-wrap: wrap;
}

nav a {
color: var(--parchment);
text-decoration: none;
font-family: 'Special Elite', serif;
font-size: 13px;
letter-spacing: 3px;
text-transform: uppercase;
padding: 16px 28px;
transition: background 0.2s, color 0.2s;
border-right: 1px solid rgba(255,255,255,0.1);
}

nav a:first-child { border-left: 1px solid rgba(255,255,255,0.1); }
nav a:hover { background: var(--red); color: #fff; }

/* ─── HERO TAGLINE ─── */
.hero {
background: var(--parchment);
border-bottom: 3px solid var(--bark);
text-align: center;
padding: 50px 40px;
position: relative;
}

.hero-quote {
font-family: 'Playfair Display', serif;
font-size: clamp(22px, 4vw, 38px);
font-style: italic;
color: var(--bark);
max-width: 800px;
margin: 0 auto 16px;
line-height: 1.4;
}

.hero-attr {
font-family: 'Special Elite', serif;
color: var(--mist);
font-size: 13px;
letter-spacing: 3px;
text-transform: uppercase;
}

/* ─── SECTION LAYOUT ─── */
.section {
padding: 70px 40px;
max-width: 1200px;
margin: 0 auto;
}

.section-title {
font-family: 'Playfair Display', serif;
font-size: clamp(32px, 5vw, 52px);
font-weight: 700;
color: var(--pine);
margin-bottom: 8px;
position: relative;
display: inline-block;
}

.section-title::after {
content: '';
display: block;
height: 4px;
background: var(--red);
margin-top: 8px;
width: 60%;
}

.section-intro {
font-size: 17px;
line-height: 1.8;
color: var(--bark);
max-width: 700px;
margin: 20px 0 50px;
}

/* ─── MENU ITEMS ─── */
.menu-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 24px;
}

.menu-card {
background: white;
border: 2px solid var(--parchment);
border-radius: 4px;
padding: 28px 24px;
position: relative;
transition: transform 0.25s, box-shadow 0.25s;
overflow: hidden;
}

.menu-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 4px;
background: var(--red);
}

.menu-card:hover {
transform: translateY(-4px);
box-shadow: 0 12px 32px rgba(74,55,40,0.15);
}

.menu-icon {
font-size: 32px;
margin-bottom: 12px;
display: block;
}

.menu-card h3 {
font-family: 'Playfair Display', serif;
font-size: 20px;
color: var(--pine);
margin-bottom: 8px;
font-weight: 700;
}

.menu-card p {
font-size: 14px;
line-height: 1.7;
color: #5a4a3a;
}

/* ─── DIVIDER ─── */
.divider {
text-align: center;
padding: 20px;
color: var(--gold);
font-family: 'Special Elite', serif;
font-size: 20px;
letter-spacing: 16px;
background: var(--parchment);
border-top: 1px solid var(--bark);
border-bottom: 1px solid var(--bark);
}

/* ─── REVIEWS ─── */
.reviews-bg {
background: var(--pine);
padding: 70px 40px;
}

.reviews-inner {
max-width: 1200px;
margin: 0 auto;
}

.reviews-bg .section-title {
color: var(--cream);
}

.reviews-bg .section-title::after {
background: var(--gold);
}

.reviews-bg .section-intro {
color: var(--mist);
}

.reviews-masonry {
columns: 3 320px;
gap: 24px;
}

.review-card {
break-inside: avoid;
background: rgba(255,255,255,0.06);
border: 1px solid rgba(255,255,255,0.12);
border-radius: 4px;
padding: 24px;
margin-bottom: 24px;
transition: background 0.2s;
}

.review-card:hover {
background: rgba(255,255,255,0.1);
}

.review-stars {
color: var(--gold);
font-size: 16px;
margin-bottom: 10px;
letter-spacing: 2px;
}

.review-text {
font-size: 14px;
line-height: 1.75;
color: var(--parchment);
font-style: italic;
margin-bottom: 14px;
}

.review-author {
font-family: 'Special Elite', serif;
font-size: 12px;
color: var(--gold);
letter-spacing: 2px;
text-transform: uppercase;
}

/* ─── HIGHLIGHTS STRIP ─── */
.highlights {
background: var(--red);
padding: 40px;
text-align: center;
}

.highlights-grid {
display: flex;
justify-content: center;
gap: 60px;
flex-wrap: wrap;
max-width: 900px;
margin: 0 auto;
}

.highlight-item {
color: white;
}

.highlight-num {
font-family: 'Playfair Display', serif;
font-size: 48px;
font-weight: 900;
display: block;
line-height: 1;
}

.highlight-label {
font-family: 'Special Elite', serif;
font-size: 12px;
letter-spacing: 3px;
text-transform: uppercase;
opacity: 0.85;
margin-top: 6px;
display: block;
}

/* ─── INFO ─── */
.info-section {
padding: 70px 40px;
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}

@media(max-width: 700px) {
.info-section { grid-template-columns: 1fr; }
}

.info-block h3 {
font-family: 'Playfair Display', serif;
font-size: 26px;
color: var(--pine);
margin-bottom: 16px;
font-weight: 700;
}

.info-block p, .info-block li {
font-size: 15px;
line-height: 1.9;
color: var(--bark);
}

.info-block ul { list-style: none; padding: 0; }
.info-block ul li::before { content: '✦ '; color: var(--gold); }

/* ─── FOOTER ─── */
footer {
background: var(--ink);
color: var(--mist);
text-align: center;
padding: 40px;
font-family: 'Special Elite', serif;
font-size: 13px;
letter-spacing: 2px;
}

footer span { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes fadeDown {
from { opacity: 0; transform: translateY(-20px); }
to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to   { opacity: 1; transform: translateY(0); }
}

/* scroll reveal */
.reveal {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
