:root {
  --cream: #f7f0e6;
  --paper: #efe5d6;
  --bone: #fffaf3;
  --char: #1f1715;
  --char-soft: #332825;
  --red: #7e1d1d;
  --red-deep: #5a1315;
  --copper: #bb8047;
  --tan: #d8b28a;
  --ink: #2d231f;
  --muted: #6c5c55;
  --line: rgba(45, 35, 31, 0.14);
  --line-strong: rgba(45, 35, 31, 0.28);
  --white: #ffffff;
  --max: 1220px;
  --serif: "Baskerville", "Times New Roman", Georgia, serif;
  --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.72;
  background:
    radial-gradient(circle at top left, rgba(187, 128, 71, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, #f7f0e6 36%, #f3e8dc 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    linear-gradient(rgba(126, 29, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126, 29, 29, 0.03) 1px, transparent 1px);
  background-size: 100% 120px, 120px 100%;
}

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

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

p,
ul,
ol {
  margin-top: 0;
}

.container {
  width: min(var(--max), calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(24, 18, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--copper) 55%, var(--red) 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-logo {
  width: 76px;
  min-width: 76px;
  height: 76px;
  object-fit: contain;
  background: rgba(255, 250, 243, 0.96);
  padding: 0.35rem;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--bone);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(150deg, rgba(126, 29, 29, 0.96), rgba(77, 20, 20, 0.96));
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand-text span {
  color: rgba(255, 250, 243, 0.68);
  font-size: 0.78rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: transparent;
  padding: 0.7rem 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.main-nav ul,
.footer-links,
.footer-contact,
.check-list,
.stat-list,
.article-meta-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem 1.15rem;
}

.main-nav a {
  position: relative;
  color: rgba(255, 250, 243, 0.84);
  font-size: 0.93rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  background: currentColor;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.footer-links a:hover,
.footer-contact a:hover,
.text-link:hover {
  color: #f0ca9e;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--bone);
  background:
    linear-gradient(120deg, rgba(20, 15, 14, 0.75), rgba(53, 18, 19, 0.68)),
    url("../images/hero-real.jpg") center/cover no-repeat;
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(20, 15, 14, 0.72), rgba(53, 18, 19, 0.66)),
    var(--hero-image, url("../images/hero-real.jpg")) center/cover no-repeat;
}

.page-hero-about {
  --hero-image: url("../images/about-real.jpg");
}

.page-hero-meats {
  --hero-image: url("../images/meats-real.jpg");
}

.page-hero-butchering {
  --hero-image: url("../images/butchering-real.jpg");
}

.page-hero-wholesale {
  --hero-image: url("../images/wholesale-real.jpg");
}

.page-hero-sourcing {
  --hero-image: url("../images/sourcing-real.jpg");
}

.page-hero-articles,
.page-hero-steak,
.page-hero-storage {
  --hero-image: url("../images/articles-real.jpg");
}

.page-hero-contact {
  --hero-image: url("../images/contact-real.jpg");
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 140px 100%, 100% 140px;
  mix-blend-mode: screen;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -5%;
  width: 40%;
  height: 120%;
  background: linear-gradient(180deg, rgba(240, 202, 158, 0.28), transparent 70%);
  transform: rotate(12deg);
  pointer-events: none;
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid,
.hero-simple {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.72fr);
  gap: 2.5rem;
  align-items: end;
  padding: 7rem 0 5.25rem;
}

.hero-simple {
  grid-template-columns: minmax(0, 0.95fr);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(255, 250, 243, 0.38);
  color: rgba(255, 240, 221, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.73rem;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.95;
  max-width: 11ch;
  letter-spacing: -0.03em;
}

.page-hero h1 {
  max-width: 13ch;
}

.hero p,
.page-hero p,
.hero-panel p {
  max-width: 68ch;
  color: rgba(255, 248, 241, 0.88);
  font-size: 1.04rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button,
.button-secondary,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button,
button[type="submit"] {
  color: var(--char);
  background: linear-gradient(145deg, #f0ca9e, #b97d43);
}

.button-secondary {
  color: var(--bone);
  border: 1px solid rgba(255, 248, 241, 0.35);
}

.button:hover,
.button-secondary:hover,
button[type="submit"]:hover {
  transform: translateY(-1px);
}

.metric-strip,
.grid-2,
.grid-3,
.grid-4,
.section-intro,
.split-layout,
.image-layout,
.contact-layout,
.story-layout,
.article-layout,
.cta-strip,
.footer-grid,
.media-band {
  display: grid;
  gap: 1.5rem;
}

.metric-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.5rem;
}

.metric {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 248, 241, 0.26);
}

.metric strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--serif);
  font-size: 1.9rem;
}

.hero-panel {
  padding: 1.5rem 0 0;
  align-self: stretch;
  border-top: 2px solid rgba(240, 202, 158, 0.72);
}

.hero-panel h2 {
  margin-top: 0;
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.05;
}

.stat-list {
  display: grid;
  gap: 1rem;
}

.stat-list li {
  padding-left: 1.2rem;
  border-left: 1px solid rgba(255, 248, 241, 0.26);
}

.stat-list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section + .section {
  border-top: 1px solid rgba(126, 29, 29, 0.08);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(126, 29, 29, 0.03), rgba(126, 29, 29, 0.015)),
    rgba(255, 250, 243, 0.82);
}

.section-dark {
  color: var(--bone);
  background:
    radial-gradient(circle at top right, rgba(240, 202, 158, 0.1), transparent 24%),
    linear-gradient(180deg, #241a18 0%, #2f201d 100%);
}

.section-dark p,
.section-dark li {
  color: rgba(255, 248, 241, 0.8);
}

.section-intro {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 2rem;
}

.section-intro h2,
.split-content h2,
.content-card h2,
.surface-panel h2,
.article-body h2,
.form-card h2 {
  margin: 0 0 0.75rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.section-intro p,
.split-content p,
.content-card p,
.surface-panel p,
.article-body p,
.form-card p {
  color: var(--muted);
}

.section-dark .section-intro p,
.section-dark .split-content p,
.section-dark .content-card p,
.section-dark .surface-panel p {
  color: rgba(255, 248, 241, 0.78);
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.info-card,
.article-card,
.highlight-card,
.step-card,
.content-card,
.surface-panel,
.quote-panel,
.table-card,
.contact-card,
.form-card,
.article-callout {
  background: transparent;
  border: 0;
  border-top: 2px solid var(--line-strong);
  padding: 1.1rem 0 0;
}

.section-dark .service-card,
.section-dark .info-card,
.section-dark .article-card,
.section-dark .highlight-card,
.section-dark .content-card,
.section-dark .surface-panel,
.section-dark .quote-panel {
  border-top-color: rgba(240, 202, 158, 0.38);
}

.service-card h3,
.info-card h3,
.article-card h3,
.highlight-card h3,
.quote-panel h3,
.table-card h3,
.contact-card h3,
.article-body h3 {
  margin: 0 0 0.7rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.12;
}

.text-link {
  color: var(--red);
  font-weight: 700;
}

.section-dark .text-link {
  color: #f0ca9e;
}

.split-layout,
.story-layout,
.contact-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.8fr);
}

.image-layout {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.05fr);
  align-items: center;
}

.photo-card {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: #231917;
}

.photo-card img,
.media-band img {
  height: 100%;
  object-fit: cover;
}

.photo-card::after,
.media-band figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(20, 15, 14, 0.82));
}

.photo-card figcaption,
.media-band figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1rem;
  z-index: 1;
  color: rgba(255, 248, 241, 0.92);
  font-size: 0.95rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(126, 29, 29, 0.18);
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.check-list li {
  position: relative;
  padding-left: 1.3rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 8px;
  height: 8px;
  background: var(--copper);
  border-radius: 50%;
}

.process-steps {
  display: grid;
  gap: 1rem;
  counter-reset: process;
  list-style: none;
  padding: 0;
}

.process-steps li {
  position: relative;
  min-height: 3rem;
  padding: 1rem 0 0 4.5rem;
  border-top: 1px solid var(--line);
}

.process-steps li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 0;
  top: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.process-steps strong {
  display: block;
  margin-bottom: 0.25rem;
}

.table-card {
  border-top-width: 3px;
}

.table-card table {
  width: 100%;
  border-collapse: collapse;
}

.table-card th,
.table-card td {
  padding: 1rem 0;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.table-card tr:last-child td {
  border-bottom: 0;
}

.media-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.media-band figure {
  position: relative;
  margin: 0;
  min-height: 320px;
  overflow: hidden;
}

.article-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  align-items: start;
}

.article-body {
  border-top: 3px solid var(--red);
  padding-top: 1.5rem;
}

.article-body h2 {
  margin-top: 2rem;
}

.article-body h3 {
  margin-top: 1.4rem;
}

.article-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 1.6rem;
  align-self: start;
}

.article-meta-list {
  display: grid;
  gap: 1rem;
}

.article-meta-list strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}

.article-callout {
  border-top-color: var(--copper);
}

.pricing-note {
  padding-left: 1rem;
  border-left: 3px solid var(--copper);
  color: var(--ink);
}

.contact-list {
  display: grid;
  gap: 1.5rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: 1.15rem;
}

form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.cta-strip {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 2.2rem 0;
  border-top: 3px solid var(--red);
}

.cta-strip h2 {
  margin: 0 0 0.6rem;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 3.8rem 0 2.1rem;
  background: linear-gradient(180deg, #1d1614 0%, #140f0e 100%);
  color: rgba(255, 248, 241, 0.82);
}

.site-footer::before {
  content: "2026";
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 0.8;
  color: rgba(240, 202, 158, 0.08);
  letter-spacing: -0.06em;
}

.footer-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.15fr) minmax(200px, 0.55fr) minmax(200px, 0.55fr);
  gap: 2rem;
}

.footer-title {
  margin: 0 0 0.8rem;
  color: rgba(255, 248, 241, 0.62);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  position: relative;
  width: fit-content;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 248, 241, 0.58);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-layout,
  .story-layout,
  .image-layout,
  .contact-layout,
  .article-layout,
  .footer-grid,
  .cta-strip,
  .metric-strip {
    grid-template-columns: 1fr;
  }

  .media-band {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: rgba(24, 18, 16, 0.98);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 100%;
  }

  .grid-2,
  .grid-3,
  .section-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--max), calc(100% - 1.4rem));
  }

  .hero-grid,
  .hero-simple {
    padding: 6.2rem 0 4rem;
  }

  .form-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer::before {
    right: 1rem;
    font-size: 5rem;
  }
}
