/* ==========================================================================
   The Meat Shed — Homepage
   ========================================================================== */

:root {
  --charcoal:      #1D1914;
  --charcoal-2:     #2B211A; /* nav / panel bg, slightly warmer than --charcoal */
  --cream:         #F6F0E2;
  --parchment:     #E7DBBD;
  --dinner-body:   #D9CCB5;
  --mustard:       #C89B3C;
  --oxblood:       #5C1A1A;
  --footer-gray:   #998F7A;
  --photo-base:    #17120E;
  --story-text:    #25211E;

  --font-display: 'Anton', sans-serif;
  --font-label:   'Oswald', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --font-marker:  'Caveat', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  font-family: var(--font-body);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #1D1914;
  color: #F6F0E2;
  padding: 12px 20px;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

.link--underline { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--mustard);
  outline-offset: 2px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 4px;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.btn:hover { filter: brightness(1.06); }
.btn:active { transform: translateY(1px); }

.btn--solid {
  background: var(--mustard);
  color: var(--charcoal);
  text-transform: uppercase;
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}

.eyebrow {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mustard);
  margin: 0 0 12px;
}

.eyebrow--oxblood { color: var(--oxblood); }

.marker-note {
  font-family: var(--font-marker);
  font-weight: 700;
  font-size: 22px;
  color: var(--mustard);
  margin: 0;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  background: var(--charcoal-2);
  border-bottom: 2px solid var(--mustard);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 64px;
  gap: 24px;
}

.nav__logo img {
  height: 112px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links a {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--cream);
  text-transform: uppercase;
}

.nav__links a.btn--solid {
  color: var(--charcoal);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
}

/* ==========================================================================
   Split sections (Hero / Grill) — shared layout
   ========================================================================== */

.split {
  display: flex;
  align-items: stretch;
}

.split__content {
  flex: 1 1 50%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}

.split__photo {
  flex: 1 1 50%;
  min-height: 413px;
  background-color: var(--photo-base);
  background-size: cover;
  background-position: center;
}

/* Hero */
.hero {
  background: var(--charcoal-2);
}

.hero .split__content {
  gap: 22px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.15;
  letter-spacing: 0.5px;
  color: var(--cream);
  margin: 0;
}

.hero__body {
  font-size: 18px;
  line-height: 1.55;
  color: var(--parchment);
  max-width: 32em;
  margin: 0;
}

.hero__hours {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--mustard);
  margin: 0;
}

.split__photo--fit {
  background: none;
  overflow: hidden;
}

.split__photo--fit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Value props strip */
.value-props {
  background: var(--mustard);
  padding: 48px 80px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.value-props__item {
  flex: 1 1 280px;
  max-width: 360px;
}

.value-props__item h2 {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 8px;
}

.value-props__item p {
  font-size: 14px;
  line-height: 1.45;
  color: var(--charcoal);
  margin: 0;
}

/* Grill / dinner section */
.grill {
  background: var(--charcoal-2);
}

.grill__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: 0.5px;
  color: var(--cream);
  margin: 0;
}

.grill__body {
  font-size: 18px;
  line-height: 1.45;
  color: var(--dinner-body);
  max-width: 30em;
  margin: 0;
}

/* Our Story */
.story {
  background: var(--mustard);
  padding: 90px 80px;
  text-align: center;
}

.story__inner {
  max-width: 900px;
  margin: 0 auto;
}

.story__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 42px;
  color: var(--charcoal);
  margin: 12px 0 20px;
}

.story__body {
  font-size: 18px;
  line-height: 1.5;
  color: var(--story-text);
  text-align: left;
  margin: 0;
}

/* Hours & Location */
.hours {
  background: var(--charcoal);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hours__left {
  display: flex;
  align-items: center;
  gap: 80px;
}

.hours__left .nav__logo img {
  height: 144px;
}

.hours__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: none;
}

.social-btn img {
  width: 24px;
  height: 24px;
}

.hours__groups {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.hours__group h2 {
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mustard);
  margin: 0 0 6px;
}

.hours__group p {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--cream);
  margin: 0 0 4px;
}

.hours__group p:last-child { margin-bottom: 0; }

.location { margin-bottom: 14px; }
.location:last-child { margin-bottom: 0; }

.location__tag {
  display: block;
  font-family: var(--font-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mustard);
  margin-bottom: 2px;
}

.location--secondary .location__tag { color: var(--footer-gray); }

.location--secondary p {
  font-size: 15px;
  color: var(--footer-gray);
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  padding: 28px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer p {
  font-size: 13px;
  color: var(--footer-gray);
  margin: 0;
}

/* ==========================================================================
   Motion — respect reduced-motion preference
   ========================================================================== */

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .split { flex-direction: column; }
  .split__content { padding: 56px 24px; }
  .split__photo { min-height: 280px; order: -1; }
  .split__photo--fit { height: 280px; }

  .hero__headline { font-size: 34px; }
  .grill__headline { font-size: 30px; }

  .value-props { padding: 40px 24px; flex-direction: column; }
  .value-props__item { flex: none; max-width: none; }
  .story { padding: 64px 24px; }
  .story__headline { font-size: 30px; }

  .hours, .site-footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; text-align: left; }
  .site-footer { align-items: center; text-align: center; }

  .hours__left { gap: 40px; }
  .hours__left .nav__logo { flex-shrink: 0; }
}

@media (max-width: 900px) and (min-width: 1px) {
  .nav.nav--open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal-2);
    padding: 24px;
    gap: 20px;
    border-bottom: 2px solid var(--mustard);
  }
  .site-header { position: relative; }
}
