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

:root {
  --burgundy: #7a1e2b;
  --burgundy-dark: #5c1620;
  --cream: #f7f2eb;
  --cream-dark: #ebe3d6;
  --brown: #37241d;
  --gold: #c9a227;
  --text: #2a2018;
  --max-width: 72rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

a {
  color: var(--burgundy);
}

a:hover {
  color: var(--burgundy-dark);
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--cream);
  border-bottom: 2px solid var(--brown);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.logo {
  width: clamp(9rem, 32vw, 16rem);
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.nav a {
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.nav a:hover {
  color: var(--burgundy);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(18rem, 55vw, 32rem);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: clamp(18rem, 55vw, 32rem);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(55, 36, 29, 0.85) 0%, rgba(55, 36, 29, 0.2) 55%, transparent 100%);
}

.hero-content {
  padding: 2rem 0 2.5rem;
  color: #fff;
}

.hero-tag {
  margin: 0 0 0.5rem;
  font-family: system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  margin: 0 0 0.75rem;
  max-width: 16ch;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.15;
}

.hero-lead {
  margin: 0 0 1.25rem;
  max-width: 36ch;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: var(--burgundy);
  border: 2px solid var(--burgundy);
  border-radius: 2px;
}

.btn:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  color: #fff;
}

.btn-outline {
  color: var(--burgundy);
  background: transparent;
}

.btn-outline:hover {
  color: #fff;
  background: var(--burgundy);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--cream-dark);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--brown);
}

.section-intro {
  margin: 0 0 2rem;
  max-width: 40ch;
}

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-text p {
  margin: 0 0 1rem;
}

.about-figure {
  margin: 0;
  border: 3px solid var(--brown);
}

.about-figure img {
  width: 100%;
}

/* Our Meats */
.meats-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.meat-category {
  padding: 1.25rem;
  background: var(--cream);
  border-left: 4px solid var(--burgundy);
}

.meat-category h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--burgundy);
}

.meat-category p {
  margin: 0;
}

.meats-note {
  margin: 0 0 2rem;
  font-style: italic;
}

.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-inline: auto;
  width: 100%;
}

.photo-gallery img {
  width: calc(50% - 0.325rem);
  flex: 0 0 calc(50% - 0.325rem);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(55, 36, 29, 0.12);
}

/* FAQ */
.faq-list {
  margin: 0;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(55, 36, 29, 0.15);
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-item dt {
  margin: 0 0 0.5rem;
  font-family: system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
}

.faq-item dd {
  margin: 0;
}

.faq-item dd a {
  font-weight: 600;
}

/* Visit */
.visit-grid {
  display: grid;
  gap: 2rem;
}

address {
  margin: 0 0 1rem;
  font-style: normal;
  line-height: 1.7;
}

.contact-list {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.contact-list a {
  font-family: system-ui, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.hours {
  margin: 0 0 1.25rem;
}

.map-wrap {
  min-height: 16rem;
  border: 3px solid var(--brown);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16rem;
  border: 0;
}

/* Footer */
.site-footer {
  padding: 1.5rem 0;
  background: var(--brown);
  color: var(--cream);
}

.footer-inner {
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer p {
  margin: 0;
}

/* Responsive */
@media (min-width: 768px) {
  .meats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .visit-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 20rem;
  }
}
