*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Bitter', Georgia, serif; color: #212121; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: 'Montserrat', Arial, sans-serif; }

/* NAV */
.nav-bar { background: #008a32; padding: 0; position: sticky; top: 0; z-index: 100; }
.nav-inner { max-width: 1100px; margin: auto; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.nav-logo { height: 60px; padding: 6px 0; }
.nav-links { display: flex; list-style: none; gap: 0; }
.nav-links a { color: #fff; font-family: 'Montserrat', sans-serif; font-size: 12pt; padding: 18px 16px; display: block; border-bottom: 4px solid transparent; transition: border-color .2s; }
.nav-links a:hover, .nav-links a.active { border-bottom-color: #fff; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; padding: 10px; }

/* HERO */
.hero { position: relative; height: 430px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-overlay { position: absolute; inset: 0; background: rgba(31,31,31,.5); }
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 20px; }
.hero h1 { font-size: 58pt; font-weight: 700; line-height: 1.06; margin-bottom: 20px; }
.hero p { font-size: 11pt; margin-bottom: 30px; }
.btn-order { display: inline-block; background: #fff; color: #000; font-family: 'Bitter', serif; font-size: 11pt; padding: 14px 32px; border: 1px solid #000; transition: background .3s; }
.btn-order:hover { background: rgba(255,255,255,.85); }

/* SECTIONS */
.section { padding: 56px 20px; }
.section-inner { max-width: 1100px; margin: auto; }
.section-gray { background: #f0f0f0; }
.section-dark { background: #3a3a3a; color: #fff; }
.section-dark .btn-order { background: #fff; }
.section-dark h2 { color: #fff; }

h2.section-title { font-family: 'Montserrat', sans-serif; font-size: 34pt; font-weight: 700; color: #009f3c; line-height: 1.2; padding: 13px 0; border-top: 5px solid #f0f0f0; border-bottom: 5px solid #f0f0f0; margin-bottom: 30px; }
.section-dark h2.section-title { border-color: #303030; color: #fff; }

/* ANNOUNCEMENT BAR */
.announce-bar { background: #f0f0f0; text-align: center; padding: 12px 20px; font-size: 11pt; }
.announce-bar strong { color: #009f3c; }

/* CONTENT GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* HOURS TABLE */
.hours-table { width: 100%; max-width: 400px; margin: 20px auto; }
.hours-table td { padding: 6px 16px; font-size: 11pt; }
.hours-table td:first-child { font-weight: 700; }
.hours-table tr.closed td { color: #999; }

/* QUOTE */
.quote-block { padding: 48px; font-family: 'Montserrat', sans-serif; font-size: 20pt; line-height: 1.75; font-style: italic; }
.quote-author { font-size: 11pt; font-style: normal; margin-top: 16px; font-weight: 700; }

/* PMQ BANNER */
.pmq-banner { text-align: center; padding: 30px 20px; }
.pmq-banner img { max-height: 200px; margin: 0 auto 20px; border-radius: 8px; }

/* IMAGE GRID */
.img-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 30px; }
.img-grid img { border-radius: 8px; width: 100%; height: 280px; object-fit: cover; }

/* ABOUT PAGE */
.about-content h3 { font-family: 'Montserrat', sans-serif; font-size: 15pt; color: #009f3c; font-weight: 700; margin: 25px 0 10px; }
.about-content p { margin-bottom: 16px; }

/* ACCOLADES */
.accolade-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.accolade-card img { width: 100%; height: 220px; object-fit: cover; }
.accolade-card .card-body { padding: 20px; }
.accolade-card .card-body p { font-size: 11pt; }
.accolade-card .card-body a { color: #009f3c; font-weight: 700; }

/* FOOTER */
.footer { background: #008a32; color: #fff; padding: 28px 20px; text-align: center; font-size: 11pt; }
.footer a { color: #fff; text-decoration: underline; }

/* MOBILE */
@media (max-width: 768px) {
  .hero { height: 300px; }
  .hero h1 { font-size: 32pt; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .img-grid { grid-template-columns: 1fr; }
  .quote-block { padding: 24px; font-size: 16pt; }
  h2.section-title { font-size: 24pt; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #008a32; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,.2); }
  .nav-toggle { display: block; }
  .accolade-card img { height: 180px; }
}
