/* ============================================================
   Northern Ember Smoke BBQ
   Palette sampled from the brand logo:
   green #3e5741 · cream #f6efe9 · ember #f85e17
   ============================================================ */

:root {
  --green:       #3e5741;
  --green-deep:  #2c3f31;
  --green-dark:  #233226;
  --cream:       #f6efe9;
  --cream-2:     #efe5d6;
  --cream-3:     #e6dac6;
  --line:        #e0d4c0;
  --ember:       #ec5f1c;
  --ember-deep:  #cc4a0d;
  --ink:         #241f1a;
  --muted:       #6f665a;
  --muted-cream: #cdd6cb;

  --radius:   14px;
  --radius-lg: 22px;
  --shadow:   0 18px 44px -22px rgba(35, 50, 38, .45);
  --shadow-sm: 0 8px 22px -14px rgba(35, 50, 38, .4);
  --maxw: 1140px;

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Lato", system-ui, -apple-system, sans-serif;
  --font-script: "Yellowtail", cursive;
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--ember-deep); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  letter-spacing: .5px;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.45rem; letter-spacing: 1px; }

section { scroll-margin-top: 86px; }

.kicker {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: .82rem;
  color: var(--ember-deep);
  margin: 0 0 .5rem;
}
.kicker-cream { color: var(--ember); }

.section { padding: 84px 0; }
.section-head { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-lead { color: var(--muted); font-size: 1.08rem; margin: 14px 0 0; }
.section-green .section-lead { color: var(--muted-cream); }
.section-green .section-lead a { color: #fff; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 600;
  font-size: .92rem;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-ember { background: var(--ember); color: #fff; box-shadow: var(--shadow-sm); }
.btn-ember:hover { background: var(--ember-deep); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-green:hover { background: var(--green-deep); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(246,239,233,.6); }
.btn-ghost:hover { background: rgba(246,239,233,.12); border-color: var(--cream); }
.btn-ghost-cream { background: transparent; color: var(--green); border-color: var(--green); }
.btn-ghost-cream:hover { background: var(--green); color: var(--cream); }

/* inline SVG icons (sprite lives at top of <body>) */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.btn .ico { width: 20px; height: 20px; fill: currentColor; flex: none; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,239,233,.92);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-brand img { height: 62px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a:not(.btn) {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--green-deep);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
}
.nav-links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--ember); transition: width .22s ease;
}
.nav-links > a:not(.btn):hover { color: var(--ember-deep); }
.nav-links > a:not(.btn):hover::after { width: 100%; }
.nav-call { margin-left: 6px; padding: 10px 18px; font-size: .85rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--green-deep); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(70vh, 520px);
}
.hero-panel {
  background:
    radial-gradient(120% 120% at 0% 0%, var(--green) 0%, var(--green-deep) 75%);
  display: flex; align-items: center;
  position: relative;
}
.hero-panel::after {
  /* subtle ember underline accent at the seam */
  content: ""; position: absolute; right: 0; top: 0; bottom: 0; width: 6px;
  background: var(--ember);
}
.hero-panel-inner { padding: 48px clamp(28px, 5vw, 70px); max-width: 600px; margin-left: auto; }
.hero-badge { width: 156px; margin: 0 0 22px; }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted-cream);
  font-size: .85rem;
  font-weight: 500;
  margin: 0 0 14px;
}
.hero h1 { color: var(--cream); }
.hero-sub { color: var(--muted-cream); font-size: 1.12rem; margin: 20px 0 32px; max-width: 460px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-photo { position: relative; overflow: hidden; background: var(--green-deep); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- strip ---------- */
.strip { background: var(--ink); color: var(--cream); }
.strip-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 14px; padding: 16px 22px;
  font-family: var(--font-display); text-transform: uppercase;
  letter-spacing: 2px; font-size: .85rem; font-weight: 500;
}
.strip .dot { color: var(--ember); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo > img:first-child {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.2; object-fit: cover; width: 100%;
}
.about-stamp {
  position: absolute; bottom: -26px; right: -14px;
  width: 132px; height: 132px;
  background: var(--cream);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: grid; place-items: center; overflow: hidden;
}
.about-stamp img { width: 82%; height: auto; display: block; transform: translateY(-5px); }
.about-copy h2 { margin-bottom: 8px; }
.about-copy p { font-size: 1.08rem; margin: 16px 0; color: #3a342c; }
.about-copy .btn { margin-top: 12px; }

/* ============================================================
   SECTION VARIANTS
   ============================================================ */
.section-green { background: var(--green); color: var(--cream); }
.section-green h2, .section-green h3 { color: var(--cream); }
.section-cream2 { background: var(--cream-2); }

/* ============================================================
   MENU
   ============================================================ */
.menu-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 26px; align-items: stretch; }
.menu-col-side { display: grid; gap: 26px; }
.menu-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px 30px 26px;
  box-shadow: var(--shadow);
}
.menu-card h3 {
  color: var(--green);
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--line);
}
.menu-item { padding: 14px 0; border-bottom: 1px dashed var(--cream-3); }
.menu-item:last-child { border-bottom: 0; }
.menu-item-head { display: flex; align-items: baseline; gap: 8px; }
.menu-name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.16rem;
  letter-spacing: .4px; color: var(--ink); text-transform: uppercase;
}
.menu-dots { flex: 1; border-bottom: 2px dotted var(--cream-3); transform: translateY(-4px); }
.menu-price {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--ember-deep);
}
.menu-desc { margin: 6px 0 0; color: var(--muted); font-size: .98rem; }
.fav {
  display: inline-block; vertical-align: middle;
  font-family: var(--font-body); font-weight: 700;
  font-size: .62rem; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; background: var(--ember); border-radius: 999px;
  padding: 3px 9px; margin-left: 6px;
}
.is-feature {
  margin: 4px -14px; padding: 16px 14px; border: 0;
  border-radius: 12px; background: #fbf6ee;
  box-shadow: inset 0 0 0 1px var(--cream-3);
}

.combo-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-lg); padding: 22px 26px;
  box-shadow: var(--shadow);
}
.combo-flame { font-size: 1.8rem; }
.combo-title {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1px;
  font-weight: 700; font-size: 1.25rem; margin: 0; color: var(--cream);
}
.combo-desc { margin: 2px 0 0; font-size: .92rem; color: var(--muted-cream); }
.combo-price {
  margin-left: auto; font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; color: var(--ember);
}
.menu-note { text-align: center; margin: 40px 0 0; }
.section-green .btn-ghost-cream { color: var(--cream); border-color: rgba(246,239,233,.6); }
.section-green .btn-ghost-cream:hover { background: var(--cream); color: var(--green); border-color: var(--cream); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  padding: 0; border: 0; cursor: pointer; background: none;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); aspect-ratio: 1 / 1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.ico-star { color: #ffd45e; }
/* larger, vertically-centred icons on the review buttons */
.review-btn { align-items: center; }
.review-btn .ico { width: 26px; height: 26px; }
.review-btn .ico-star { font-size: 1.4em; line-height: 1; display: inline-flex; align-items: center; transform: translateY(-2px); }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 22px; margin-top: 40px; }
.quote {
  background: var(--cream); border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-sm); margin: 0; border-left: 4px solid var(--ember);
}
.quote p { font-size: 1.1rem; font-style: italic; margin: 0 0 12px; }
.quote figcaption { font-weight: 700; color: var(--green); }
.stars { color: #e8a31c; }

/* ============================================================
   FIND US
   ============================================================ */
.find-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.find-copy h2 { margin-bottom: 6px; }
.find-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 18px; }
.find-list li { display: flex; gap: 16px; align-items: flex-start; }
.find-list div { overflow-wrap: anywhere; }
.find-list a { color: var(--green); text-decoration: none; font-weight: 700; }
.find-list a:hover { color: var(--ember-deep); }
.find-ico {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center; color: var(--cream);
}
.find-ico svg { width: 20px; height: 20px; fill: var(--cream); }

.socials { display: flex; gap: 12px; margin-top: 8px; }
.social-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: var(--cream);
  display: grid; place-items: center; font-size: 1.3rem;
  text-decoration: none; transition: background .2s, transform .15s;
}
.social-btn:hover { background: var(--ember); transform: translateY(-2px); }
.social-btn svg { width: 22px; height: 22px; fill: var(--cream); }

.find-map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
  background: var(--cream-2);
}
.find-map-frame { position: relative; line-height: 0; min-height: 380px; }
.map-fallback {
  position: absolute; inset: 0; z-index: 0;
  display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 2px;
  color: var(--muted); font-size: 1rem; line-height: 1.4;
}
.find-map iframe { position: relative; z-index: 1; width: 100%; height: 380px; border: 0; display: block; }
.map-link {
  display: block; text-align: center; padding: 14px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: 1.5px;
  font-size: .85rem; font-weight: 600; color: var(--green);
  text-decoration: none; background: var(--cream); border-top: 1px solid var(--line);
}
.map-link:hover { background: var(--green); color: var(--cream); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-dark); color: var(--cream); padding: 56px 0 40px; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.footer-logo { width: 150px; margin-bottom: 10px; }
.footer-tag { font-family: var(--font-script); font-size: 1.7rem; color: var(--ember); margin: 0 0 8px; }
.footer-call { font-family: var(--font-display); letter-spacing: 1px; font-size: 1.05rem; margin: 0; }
.footer-call a { color: var(--cream); text-decoration: none; }
.footer-call a:hover { color: var(--ember); }
.footer-email { margin: 5px 0 0; font-size: .98rem; }
.footer-email a { color: var(--muted-cream); text-decoration: none; }
.footer-email a:hover { color: var(--ember); }
.footer-thanks { color: var(--muted-cream); margin: 8px 0 0; }
.footer-copy { color: rgba(205,214,203,.6); font-size: .85rem; margin: 14px 0 0; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20, 28, 22, .92);
  display: grid; place-items: center; padding: 28px;
}
.lightbox[hidden] { display: none; }
.lightbox-fig { margin: 0; max-width: 90vw; max-height: 88vh; text-align: center; }
.lightbox-fig img { max-width: 90vw; max-height: 78vh; border-radius: 12px; box-shadow: var(--shadow); }
.lightbox-fig figcaption { color: var(--cream); margin-top: 14px; font-size: 1rem; }
.lightbox-close {
  position: absolute; top: 20px; right: 26px;
  background: none; border: 0; color: var(--cream);
  font-size: 2.6rem; line-height: 1; cursor: pointer;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links.open { max-height: 460px; }
  .nav-links > a { padding: 15px 22px !important; border-top: 1px solid var(--line); }
  .nav-call { margin: 14px 22px; justify-content: center; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-panel-inner { margin: 0 auto; text-align: center; padding: 40px 26px; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-panel::after { display: none; }
  .hero-panel { border-bottom: 6px solid var(--ember); }
  .hero-photo { min-height: 320px; order: 2; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 520px; }
  .about-stamp { width: 104px; height: 104px; right: 8px; }

  .menu-grid { grid-template-columns: 1fr; }
  .find-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .section { padding: 60px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .combo-card { flex-wrap: wrap; }
  .combo-price { margin-left: 0; }
  .strip-inner { letter-spacing: 1px; font-size: .78rem; }
}

/* short / landscape viewports: keep the hero compact, no big empty gaps */
@media (orientation: landscape) and (max-height: 600px) {
  .hero { min-height: 0; }
  .hero-panel-inner { padding-top: 26px; padding-bottom: 26px; }
  .hero-badge { width: 104px; margin-bottom: 12px; }
  .hero h1 { font-size: clamp(2rem, 6.5vw, 3rem); }
  .hero-sub { margin: 12px auto 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
