/* ============================================================
   MILK & HONEY GRILL — Main Stylesheet
   Aesthetic: Warm rustic / farmhouse editorial
   ============================================================ */

:root {
  --cream:    #f9f4ec;
  --warm-white: #fdf8f1;
  --honey:    #c9873a;
  --honey-light: #e8a95a;
  --honey-dark: #9e6420;
  --bark:     #3d2b1a;
  --bark-mid: #5c3d20;
  --sage:     #5a6b4e;
  --sage-light: #7a8f6b;
  --charcoal: #2a1f14;
  --muted:    #7a6850;
  --border:   #d9c9b2;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', 'Helvetica Neue', sans-serif;

  --transition: 0.3s ease;
  --radius: 6px;
  --shadow: 0 4px 24px rgba(61,43,26,0.10);
  --shadow-lg: 0 8px 48px rgba(61,43,26,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.25rem; margin-bottom:.6rem; }
p  { margin-bottom: 1rem; color: var(--bark-mid); }
a  { color: inherit; text-decoration: none; }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: .6rem;
  font-weight: 700;
}
.center { text-align: center; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: .8rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--honey);
  color: #fff;
  border: 2px solid var(--honey);
}
.btn-primary:hover {
  background: var(--honey-dark);
  border-color: var(--honey-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,135,58,.35);
}
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,248,241,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.15; }
.logo-honey {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bark);
}
.logo-grill {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--honey);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bark);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--honey);
  border-bottom-color: var(--honey);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--bark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 5rem;
  background:
    linear-gradient(160deg, rgba(61,43,26,.82) 0%, rgba(90,107,78,.7) 100%),
    url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}
.hero-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Crect width='4' height='4' fill='none'/%3E%3Ccircle cx='1' cy='1' r='.6' fill='rgba(255,255,255,.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--honey-light);
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-title {
  color: #fff;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}
.hero-title em {
  font-style: italic;
  color: var(--honey-light);
}
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  max-width: 480px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  position: absolute;
  bottom: 3rem;
  right: 6%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--honey);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(201,135,58,.5);
  animation: floatBadge 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--bark);
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--cream);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .5rem 2.5rem;
}
.strip-icon { font-size: 1.3rem; }
.strip-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.2);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { color: var(--bark); }
.about-text p { max-width: 480px; }
.about-quote {
  background: var(--cream);
  border-left: 4px solid var(--honey);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
}
blockquote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--bark);
  line-height: 1.6;
}
blockquote cite {
  display: block;
  margin-top: 1.2rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--honey);
  font-weight: 700;
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights {
  background: var(--cream);
  padding: 6rem 2rem;
}
.highlights h2 { color: var(--bark); text-align: center; margin-bottom: 3.5rem; }
.highlights-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.highlight-card {
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hc-icon { font-size: 2.4rem; margin-bottom: 1rem; }
.highlight-card h3 { color: var(--bark); }
.highlight-card p { font-size: .92rem; margin: 0; }

/* ============================================================
   HOURS PREVIEW
   ============================================================ */
.hours-preview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
}
.hp-content h2 { color: var(--bark); }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
}
.hours-table td {
  padding: .7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
  color: var(--bark-mid);
}
.hours-table td:first-child { font-weight: 700; color: var(--bark); padding-right: 2rem; }
.hours-table .closed { color: var(--muted); font-style: italic; }
.hp-contact { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.contact-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: var(--bark-mid);
  transition: color var(--transition);
}
.contact-link:hover { color: var(--honey); }

/* ============================================================
   REVIEW TEASER
   ============================================================ */
.review-teaser {
  background:
    linear-gradient(135deg, var(--bark) 0%, var(--bark-mid) 100%);
  padding: 7rem 2rem;
}
.review-teaser .section-label { color: var(--honey-light); }
.review-teaser h2 { color: #fff; margin-bottom: 3rem; }
.rt-cards {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
}
.rt-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 2.2rem;
  backdrop-filter: blur(6px);
  transition: background var(--transition);
}
.rt-card:hover { background: rgba(255,255,255,.13); }
.rt-stars { color: var(--honey-light); font-size: 1.1rem; margin-bottom: 1rem; }
.rt-card p { color: rgba(255,255,255,.9); font-style: italic; margin: 0 0 1rem; }
.rt-card cite {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--honey-light);
  font-weight: 700;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.7);
  padding: 5rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: .5rem;
}
.footer-heading {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--honey-light);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--honey-light); }
.social-icons { display: flex; flex-direction: column; gap: .8rem; }
.social-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .85rem;
  font-weight: 700;
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  width: fit-content;
}
.social-btn.fb   { color: #9ec8ff; border: 1px solid rgba(158,200,255,.3); }
.social-btn.yelp { color: #ffb3a0; border: 1px solid rgba(255,179,160,.3); }
.social-btn.google { color: #a8e6a3; border: 1px solid rgba(168,230,163,.3); }
.social-btn:hover { background: rgba(255,255,255,.08); }
.footer-bottom {
  max-width: 1200px;
  margin: auto;
  padding: 1.5rem 0;
  font-size: .78rem;
  text-align: center;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   PAGE HEADER (for inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--bark) 0%, var(--bark-mid) 100%);
  padding: 9rem 2rem 4rem;
  text-align: center;
}
.page-header h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: .5rem; }
.page-header p { color: rgba(255,255,255,.75); max-width: 520px; margin: auto; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.menu-category {
  margin-bottom: 3.5rem;
}
.menu-category h2 {
  color: var(--bark);
  font-size: 1.6rem;
  border-bottom: 2px solid var(--honey);
  padding-bottom: .6rem;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.menu-items { display: flex; flex-direction: column; gap: 1rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: .8rem 0;
  border-bottom: 1px dashed var(--border);
}
.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bark);
}
.menu-item-desc {
  font-size: .85rem;
  color: var(--muted);
  margin-top: .2rem;
}
.menu-item-info { text-align: right; min-width: 100px; }
.menu-note {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  font-size: .88rem;
  color: var(--bark-mid);
  margin-top: 2rem;
}
.menu-note strong { color: var(--honey-dark); }

/* ============================================================
   HOURS PAGE
   ============================================================ */
.hours-contact-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.hcp-box {
  background: var(--cream);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.hcp-box h2 { color: var(--bark); font-size: 1.5rem; margin-bottom: 1.5rem; }
.hcp-map { grid-column: 1/-1; }
.hcp-map iframe { width: 100%; height: 380px; border: 0; border-radius: 10px; }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.review-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.review-link-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  transition: var(--transition);
  border: 2px solid transparent;
}
.rl-google { background: #fff; color: #3c4043; border-color: #dadce0; box-shadow: var(--shadow); }
.rl-yelp   { background: #d32323; color: #fff; }
.rl-fb     { background: #1877f2; color: #fff; }
.review-link-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.reviews-list { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }
.review-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--honey);
}
.rc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .8rem; }
.rc-name { font-weight: 700; color: var(--bark); }
.rc-source { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
.rc-stars { color: var(--honey); margin-bottom: .5rem; }
.rc-text { color: var(--bark-mid); font-style: italic; margin: 0; }

.review-form-section {
  background: var(--bark);
  border-radius: 12px;
  padding: 3rem;
  color: #fff;
}
.review-form-section h2 { color: #fff; margin-bottom: .5rem; }
.review-form-section p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.rform { display: flex; flex-direction: column; gap: 1.2rem; }
.rform label { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: var(--honey-light); margin-bottom: .3rem; display: block; }
.rform input,
.rform textarea,
.rform select {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  color: #fff;
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border var(--transition);
}
.rform input::placeholder,
.rform textarea::placeholder { color: rgba(255,255,255,.4); }
.rform input:focus,
.rform textarea:focus,
.rform select:focus { border-color: var(--honey-light); }
.rform textarea { min-height: 120px; resize: vertical; }
.rform select option { background: var(--bark); color: #fff; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit-note { font-size: .8rem; color: rgba(255,255,255,.5); }
.form-success {
  display: none;
  background: rgba(90,107,78,.4);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: #c8e6c1;
  font-size: .95rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .about         { grid-template-columns: 1fr; gap: 3rem; }
  .hours-preview { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .hours-contact-page { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--warm-white); padding: 1rem 2rem 2rem; border-top: 1px solid var(--border); gap: 1.2rem; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 7rem 1.5rem 6rem; }
  .hero-badge { display: none; }
  .intro-strip { flex-direction: column; gap: .4rem; }
  .strip-divider { width: 40px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .review-link-btn { flex: 1 1 140px; justify-content: center; }
}
