/* ===== Crossings Kitchen — shared styles ===== */
:root {
  --forest: #1f3d2f;
  --forest-dark: #142a20;
  --black: #16140f;
  --cream: #faf5ea;
  --cream-2: #f2ead9;
  --gold: #bd9a4b;
  --gold-light: #d8bd7c;
  --text: #2a251d;
  --muted: #6b6355;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(22, 20, 15, 0.12);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Playfair Display', Georgia, serif;
  color: var(--forest-dark);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

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

/* ---- Top bar ---- */
.topbar {
  background: var(--black);
  color: var(--cream-2);
  font-size: .85rem;
  text-align: center;
  padding: 8px 16px;
  letter-spacing: .02em;
}
.topbar a { color: var(--gold-light); text-decoration: underline; }

/* ---- Header / nav ---- */
header.site {
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--forest-dark);
}
.brand img { height: 42px; width: auto; }
nav.links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 500;
}
nav.links a { padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color .15s; }
nav.links a:hover, nav.links a.active { border-color: var(--gold); }
.btn {
  display: inline-block;
  background: var(--forest);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: background .15s, transform .15s;
  border: 1px solid var(--forest);
}
.btn:hover { background: var(--forest-dark); transform: translateY(-1px); }
.btn.outline {
  background: transparent;
  color: var(--forest-dark) !important;
  border: 1px solid var(--forest);
}
.btn.outline:hover { background: var(--forest); color: var(--white) !important; }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--black) !important; }
.btn.gold:hover { background: var(--gold-light); }

.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--forest-dark); }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  color: var(--black);
  background: linear-gradient(180deg, rgba(255,255,255,.4), rgba(255,255,255,.55)), var(--cream);
  background-size: cover;
  background-position: center;
}
.hero .wrap { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: #7a5f1e;
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: 0 1px 12px rgba(255,255,255,.6);
}
.hero h1 {
  color: var(--black);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  max-width: 780px;
  text-shadow: 0 1px 20px rgba(255,255,255,.5);
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 560px;
  color: #211d16;
  font-weight: 500;
  text-shadow: 0 1px 16px rgba(255,255,255,.55);
}
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero .hours-pill {
  margin-top: 34px;
  display: inline-flex;
  gap: 22px;
  flex-wrap: wrap;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(20,20,15,.12);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .92rem;
  color: var(--black);
  box-shadow: var(--shadow);
}
.hero .hours-pill strong { color: #7a5f1e; display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }

/* ---- Sections ---- */
section { padding: 78px 0; }
section.tight { padding: 50px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

.bg-forest { background: var(--forest-dark); color: var(--cream-2); }
.bg-forest h2, .bg-forest h3, .bg-forest h4 { color: var(--white); }
.bg-cream2 { background: var(--cream-2); }

/* ---- Grids ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img { width: 100%; height: 230px; object-fit: cover; border-radius: var(--radius); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.card .icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .95rem; }

/* ---- Menu page ---- */
.menu-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.menu-nav a {
  padding: 9px 18px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--forest-dark);
}
.menu-nav a:hover { background: var(--forest); color: var(--white); }

.menu-block { margin-bottom: 56px; }
.menu-block h2 {
  font-size: 1.9rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 6px;
}
.menu-block .sub { color: var(--muted); font-size: .95rem; margin-bottom: 26px; }
.menu-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.menu-cat h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: 14px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,.12);
}
.menu-item:last-child { border-bottom: none; }
.menu-item .name { font-weight: 600; }
.menu-item .desc { color: var(--muted); font-size: .88rem; margin-top: 2px; }
.menu-item .price { font-weight: 700; color: var(--forest-dark); white-space: nowrap; }
.menu-item .price.stacked { font-size: .82rem; line-height: 1.6; text-align: right; }
.menu-note {
  background: var(--cream-2);
  border-left: 3px solid var(--gold);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: .9rem;
  margin: 20px 0 36px;
}

/* ---- Quote / press ---- */
.quote-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.quote-block blockquote {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--forest-dark);
  margin: 0 0 18px;
}
.quote-block cite { color: var(--muted); font-style: normal; font-size: .9rem; }
.bg-forest .quote-block blockquote { color: #ffffff; }
.bg-forest .quote-block cite { color: var(--gold-light); }

/* ---- Reviews ---- */
.reviews-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: var(--shadow);
  font-weight: 700;
}
.rating-badge .stars { color: var(--gold); letter-spacing: 2px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.review-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; display: block; }
.review-card p { color: var(--text); font-size: .95rem; margin-bottom: 14px; }
.review-card .reviewer { font-weight: 700; font-size: .9rem; color: var(--forest-dark); }
.review-card .reviewer span { font-weight: 400; color: var(--muted); }
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow);
}
.faq-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.faq-item p { color: var(--muted); font-size: .95rem; margin-bottom: 0; }

/* ---- Footer ---- */
footer.site {
  background: var(--black);
  color: #cfc9ba;
  padding: 56px 0 26px;
}
footer.site h4 { color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 40px; }
footer.site a:hover { color: var(--gold-light); }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 8px; font-size: .92rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  font-size: .82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #9b9585;
}
.social-row { display: flex; gap: 14px; margin-top: 8px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
}

/* ---- Contact page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--white);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.info-list { list-style: none; padding: 0; margin: 0 0 28px; }
.info-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,.08); }
.info-list .ico { font-size: 1.3rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); height: 320px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---- About page ---- */
.chef-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 46px; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .grid-3, .grid-2, .chef-wrap, .contact-grid, .footer-grid, .menu-cats, .value-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  nav.links { position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px 24px; box-shadow: var(--shadow); display: none; }
  nav.links.open { display: flex; }
  .menu-toggle { display: block; }
  .hero .hours-pill { flex-direction: column; gap: 10px; }
}
