/* ==========================================================================
   KR Ranches — Farm-Direct Meat | Prosser, WA
   Rustic-modern ranch theme: warm cream + deep wagyu red + forest green
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root {
  --bg: #f8f4ee;
  --bg-warm: #f1ebdd;
  --bg-deep: #e8dfca;
  --ink: #1f1a14;
  --ink-soft: #4a4035;
  --ink-mute: #7a6f60;
  --line: rgba(31, 26, 20, 0.12);
  --line-soft: rgba(31, 26, 20, 0.06);

  --wagyu: #8b1e1e;          /* primary accent: deep wagyu red */
  --wagyu-dark: #6b1414;
  --amber: #c87b29;          /* secondary accent: harvest amber */
  --forest: #2d5a3d;         /* PNW forest green */
  --wood: #6b5544;           /* weathered wood */
  --hawks: #69be28;          /* Seahawks action green (used once, sparingly) */

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --impact: "Bebas Neue", Impact, sans-serif;

  --shadow-sm: 0 2px 6px rgba(31, 26, 20, 0.06);
  --shadow-md: 0 12px 28px rgba(31, 26, 20, 0.1);
  --shadow-lg: 0 28px 60px rgba(31, 26, 20, 0.14);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --maxw: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 0.5em;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wagyu);
  padding: 6px 14px;
  background: rgba(139, 30, 30, 0.08);
  border: 1px solid rgba(139, 30, 30, 0.18);
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}
#preloader.done { opacity: 0; pointer-events: none; }

.preloader-mark {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--wagyu);
  border-radius: 50%;
  position: relative;
  animation: pulseLogo 1.5s ease-in-out infinite;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.7; }
}

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(248, 244, 238, 0);
  backdrop-filter: blur(0);
  transition: background 0.3s ease, backdrop-filter 0.3s ease,
    padding 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
  background: rgba(248, 244, 238, 0.92);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: 0 2px 10px rgba(31, 26, 20, 0.06);
}

#navbar.hide {
  transform: translateY(-110%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .nav-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wagyu);
  color: #fff;
  font-family: var(--impact);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--wagyu); }

.nav-cta {
  background: var(--wagyu);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover {
  background: var(--wagyu-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  padding: 100px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .mobile-cta {
  margin-top: 18px;
  border: 0;
  background: var(--wagyu);
  color: #fff;
  text-align: center;
  border-radius: 100px;
  padding: 18px;
  font-size: 1rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 16px 30px;
  font-size: 0.96rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, background 0.18s ease,
    color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--wagyu);
  color: #fff;
  box-shadow: 0 8px 22px rgba(139, 30, 30, 0.28);
}
.btn-primary:hover {
  background: var(--wagyu-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(139, 30, 30, 0.36);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(15, 12, 8, 0.78) 0%,
    rgba(15, 12, 8, 0.65) 45%,
    rgba(15, 12, 8, 0.45) 100%
  );
}

.hero-content {
  position: relative;
  max-width: 720px;
  color: #fff;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

.hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  color: #fff;
  margin-bottom: 22px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.4);
}
.hero h1 .accent {
  color: var(--amber);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 580px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .btn-outline:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-trust span::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--amber);
  border-radius: 50%;
}

/* ---------- STORY SECTION ---------- */
.story {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 28px;
}

.story-text p {
  font-size: 1.06rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.story-stat .num {
  font-family: var(--impact);
  font-size: 2.4rem;
  color: var(--wagyu);
  letter-spacing: 0.04em;
  display: block;
  line-height: 1;
}
.story-stat .label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
  display: block;
}

.story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-tag {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(248, 244, 238, 0.94);
  backdrop-filter: blur(6px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink);
}

/* ---------- WHAT WE RAISE ---------- */
.products {
  padding: 120px 0;
  background: var(--bg-warm);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wagyu);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(139, 30, 30, 0.25);
}
.product-card:hover::before { transform: scaleX(1); }

.product-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 30, 30, 0.08);
  border-radius: 50%;
  color: var(--wagyu);
}

.product-card h3 {
  font-family: var(--impact);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.55;
}

.product-card .product-link {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wagyu);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.product-card:hover .product-link { gap: 10px; }

/* ---------- ORDER (whole / half / quarter) ---------- */
.order {
  padding: 120px 0;
  background: var(--ink);
  color: #f4ede0;
  position: relative;
  overflow: hidden;
}
.order::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(200, 123, 41, 0.12), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(139, 30, 30, 0.18), transparent 45%);
  pointer-events: none;
}
.order .container { position: relative; z-index: 1; }

.order .section-title { color: #fff; }
.order .section-sub { color: rgba(244, 237, 224, 0.78); }

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.order-info h3 {
  font-family: var(--impact);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 20px;
}

.order-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.order-steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.order-step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wagyu);
  color: #fff;
  font-family: var(--impact);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.order-step-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.18rem;
  margin-bottom: 4px;
  color: #fff;
}
.order-step-text span {
  font-size: 0.96rem;
  color: rgba(244, 237, 224, 0.74);
}

/* Calculator card */
.order-calc {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
}

.calc-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.65);
  margin-bottom: 14px;
}

.cut-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.cut-option {
  position: relative;
}
.cut-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.cut-option label {
  display: block;
  text-align: center;
  padding: 18px 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cut-option input:checked + label {
  background: var(--wagyu);
  border-color: var(--wagyu);
}

.calc-output {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: grid;
  gap: 14px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.96rem;
}
.calc-row .calc-key {
  color: rgba(244, 237, 224, 0.7);
}
.calc-row .calc-val {
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.calc-cta {
  display: block;
  margin-top: 22px;
  text-align: center;
  background: var(--amber);
  color: var(--ink);
  padding: 16px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.calc-cta:hover {
  background: #d8893a;
  transform: translateY(-2px);
}

/* ---------- CUTS WE STOCK ---------- */
.cuts {
  padding: 120px 0;
  background: var(--bg);
}

.cuts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
}

.cut-tile {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.cut-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 30, 30, 0.3);
}
.cut-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 30, 30, 0.1);
  color: var(--wagyu);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cut-tile-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}
.cut-tile-text span {
  font-size: 0.84rem;
  color: var(--ink-mute);
}

.cuts-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.94rem;
  color: var(--ink-mute);
  font-style: italic;
}

/* ---------- WHY DIRECT (comparison) ---------- */
.why {
  padding: 120px 0;
  background: var(--bg-deep);
}

.why-table {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 980px;
  margin: 0 auto;
}

.why-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.why-row:last-child { border-bottom: 0; }

.why-row.head {
  background: var(--ink);
  color: #f4ede0;
}
.why-row.head .why-cell {
  font-family: var(--impact);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 22px 24px;
}
.why-row.head .why-us {
  background: var(--wagyu);
  color: #fff;
}

.why-cell {
  padding: 20px 24px;
  font-size: 0.96rem;
  display: flex;
  align-items: center;
}
.why-cell.label {
  font-weight: 600;
  color: var(--ink);
}
.why-cell.us { color: var(--forest); font-weight: 600; }
.why-cell.them { color: var(--ink-mute); }

.why-cell .why-check,
.why-cell .why-x {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.why-cell .why-check {
  background: var(--forest);
  color: #fff;
}
.why-cell .why-x {
  background: rgba(31, 26, 20, 0.1);
  color: var(--ink-mute);
}

/* ---------- COMMUNITY / 12s ---------- */
.community {
  padding: 110px 0;
  background: var(--forest);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.community::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(105, 190, 40, 0.18), transparent 40%);
}
.community .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.community-eyebrow {
  display: inline-block;
  font-family: var(--impact);
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--hawks);
  margin-bottom: 18px;
}

.community h2 {
  color: #fff;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin-bottom: 22px;
}

.community p {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 28px;
}

.community-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.community-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
}
.community-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--hawks);
  border-radius: 50%;
  flex-shrink: 0;
}

.community-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-lg);
}
.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.community-image .badge-12s {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--hawks);
  color: #002244;
  font-family: var(--impact);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 100px;
}

/* ---------- GALLERY ---------- */
.gallery {
  padding: 120px 0;
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  cursor: pointer;
  background: var(--bg-warm);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 4 / 6;
}

.gallery-item .gallery-cap {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(31, 26, 20, 0.78);
  color: #fff;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.gallery-item:hover .gallery-cap {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- FAQ ---------- */
.faq {
  padding: 120px 0;
  background: var(--bg-warm);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open {
  border-color: rgba(139, 30, 30, 0.3);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-arrow {
  flex-shrink: 0;
  color: var(--wagyu);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}
.faq-item.open .faq-answer {
  max-height: 360px;
  padding-bottom: 24px;
}
.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ---------- VISIT / MAP ---------- */
.visit {
  padding: 120px 0;
  background: var(--bg);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.visit-info h2 {
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  margin-bottom: 20px;
}

.visit-info p {
  font-size: 1.04rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.visit-details {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.visit-detail {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.visit-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(139, 30, 30, 0.1);
  color: var(--wagyu);
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-detail strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.14rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.visit-detail a,
.visit-detail span {
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}
.visit-detail a:hover { color: var(--wagyu); }

.visit-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}
.visit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CONTACT FORM ---------- */
.contact {
  padding: 120px 0;
  background: var(--ink);
  color: #f4ede0;
}
.contact .section-title { color: #fff; }
.contact .section-sub { color: rgba(244, 237, 224, 0.78); }

.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 237, 224, 0.7);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-group select option { color: var(--ink); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(244, 237, 224, 0.4);
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--wagyu);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.form-submit:hover:not(:disabled) {
  background: var(--wagyu-dark);
  transform: translateY(-2px);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#formSuccess {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
#formSuccess svg {
  color: var(--hawks);
  margin-bottom: 18px;
}
#formSuccess p {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fff;
  margin: 0;
}
#formSuccess p strong {
  display: block;
  font-size: 1.8rem;
  color: var(--amber);
  margin-bottom: 8px;
}

#formError {
  display: none;
  margin-top: 14px;
  color: #ffb4b4;
  font-size: 0.92rem;
  text-align: center;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #14110d;
  color: rgba(244, 237, 224, 0.7);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 0.94rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--impact);
  font-size: 0.94rem;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer ul a,
.footer ul span {
  font-size: 0.92rem;
  color: rgba(244, 237, 224, 0.7);
  transition: color 0.2s ease;
}
.footer ul a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 237, 224, 0.85);
  transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover {
  background: var(--wagyu);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.84rem;
  color: rgba(244, 237, 224, 0.55);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-credit a {
  color: #38bdf8;
  font-weight: 600;
  transition: color 0.2s ease;
}
.footer-credit a:hover { color: #7dd3fc; }
.footer-credit svg {
  display: inline-block;
  vertical-align: middle;
  color: #38bdf8;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .story-grid,
  .order-grid,
  .visit-grid,
  .community .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 680px) {
  .container { padding: 0 18px; }

  .hero { padding: 110px 0 70px; min-height: auto; }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.4rem); }
  .hero-sub { font-size: 1.04rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { text-align: center; }
  .hero-trust { gap: 14px; font-size: 0.74rem; }

  .story, .products, .order, .cuts, .why, .gallery,
  .faq, .visit, .contact, .community { padding: 80px 0; }

  .section-sub { margin-bottom: 44px; }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }

  .order-calc { padding: 24px; }

  /* MOBILE COMPARISON TABLE — each topic becomes its own card with a
     dark header + green "us" + gray "them" rows stacked inside. */
  .why-table {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: flex !important;
    flex-direction: column;
    gap: 14px;
  }
  .why-row {
    grid-template-columns: 1fr;
    background: #fff;
    border: 1px solid rgba(31, 26, 20, 0.10);
    border-bottom: 1px solid rgba(31, 26, 20, 0.10);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(31, 26, 20, 0.05);
  }
  .why-row.head { display: none; }

  .why-cell {
    display: block;
    padding: 14px 16px;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  /* Topic header — dark strip across the top of each card */
  .why-cell.label {
    background: linear-gradient(180deg, #1f1a14 0%, #2a201a 100%);
    color: #f5e8c8;
    padding: 11px 16px;
    font-size: 0.76rem;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--impact);
  }

  /* Us row — green tint, green left rail, the check pill stays as the icon */
  .why-cell.us {
    background: rgba(47, 93, 58, 0.07);
    color: #2c4a2c !important;
    border-left: 4px solid var(--forest);
    font-weight: 500;
    position: relative;
  }
  .why-cell.us::before {
    content: "KR Ranches";
    display: block;
    font-family: var(--impact);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
    margin: 0 0 4px 0 !important;
    font-weight: 800;
  }

  /* Them row — gray tint, dim left rail */
  .why-cell.them {
    background: rgba(31, 26, 20, 0.03);
    color: var(--ink-mute) !important;
    border-left: 4px solid rgba(31, 26, 20, 0.25);
    border-top: 1px dashed rgba(31, 26, 20, 0.10);
    position: relative;
  }
  .why-cell.them::before {
    content: "Grocery store";
    display: block;
    font-family: var(--impact);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(31, 26, 20, 0.45);
    margin: 0 0 4px 0 !important;
    font-weight: 800;
  }

  /* Re-anchor the check / X pills so they sit nicely below the small header */
  .why-cell.us .why-check,
  .why-cell.them .why-x {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: -4px;
  }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4 / 3; }

  .contact-form-wrap { padding: 28px 22px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .cut-options { grid-template-columns: 1fr; }
}


/* ==========================================================================
   ROUND 2 ADDITIONS - Backgrounds, Logo Mark, New Sections
   ========================================================================== */

/* ---------- DECORATIVE BACKGROUND TEXTURE ---------- */
body {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.12  0 0 0 0 0.10  0 0 0 0 0.08  0 0 0 0.07 0'/></filter><rect width='160' height='160' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}

/* ---------- POLISHED KR LOGO MARK ---------- */
/* KR Logo image rules.
   .kr-logo-circle: header / nav / mobile menu — crops bottom 26% of the
     image (the cursive "Ranches" script) so only the barbed-wire + KR
     monogram shows. Achieved by sizing the container to 75% of image
     aspect ratio and letting the img overflow upward (object-position
     top + container overflow:hidden).
   .kr-logo-full: footer / preloader — full uncropped logo with the
     cursive "Ranches" script visible.
*/
.nav-logo .nav-mark {
  background: transparent !important;
  border: none !important;
  width: 46px !important;
  height: 38px !important;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.nav-logo .nav-mark img.kr-logo-circle {
  width: 46px;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.preloader-mark {
  border: none !important;
  width: 100px !important;
  height: 100px !important;
}
.preloader-mark img.kr-logo-full {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-mark img.kr-logo-full {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  background: #faf6ee;
  border-radius: 8px;
  padding: 4px;
}
.footer-mark .footer-brand { margin-bottom: 0; }

.mobile-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
  width: 80px;
  height: 64px;
  margin-left: auto;
  margin-right: auto;
}
.mobile-mark img.kr-logo-circle {
  width: 80px;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* ---------- CORNER ORNAMENTS ---------- */
.corner-ornament {
  position: absolute;
  width: 56px;
  height: 56px;
  pointer-events: none;
  opacity: 0.55;
  color: var(--wagyu);
}
.corner-ornament.top-left  { top: 14px; left: 14px; }
.corner-ornament.top-right { top: 14px; right: 14px; transform: scaleX(-1); }
.corner-ornament.bot-left  { bottom: 14px; left: 14px; transform: scaleY(-1); }
.corner-ornament.bot-right { bottom: 14px; right: 14px; transform: scale(-1, -1); }

/* ---------- TINTED SECTION OVERRIDES ---------- */
.story          { background: var(--bg); }
.products       { background: var(--bg-warm); }
.order          { background: var(--ink); }
.cuts           { background: var(--bg); }
.why            { background: var(--bg-deep); }
.gallery        { background: var(--bg); }
.faq            { background: var(--bg-warm); }
.visit          { background: var(--bg-deep); }


/* ==========================================================================
   1. TRUST SIGNAL ROW (under hero)
   ========================================================================== */
.trust-row {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink) 60%, var(--bg) 60%, var(--bg) 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.trust-row .trust-inner {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  margin: -50px auto 0;
  max-width: 1100px;
  position: relative;
  box-shadow: 0 18px 40px rgba(31, 26, 20, 0.18);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.trust-cell-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 30, 30, 0.10);
  color: var(--wagyu);
}
.trust-cell strong {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.2;
}
.trust-cell span {
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   2. FAMILY QUOTE PANEL
   ========================================================================== */
.family-quote {
  padding: 80px 0;
  background: var(--bg-warm);
}
.quote-panel {
  max-width: 820px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--wagyu);
  padding: 44px 48px;
  border-radius: var(--radius-md);
  position: relative;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.quote-panel .quote-mark {
  color: var(--wagyu);
  opacity: 0.3;
  position: absolute;
}
.quote-panel .quote-mark.left  { top: 18px; left: 22px; }
.quote-panel .quote-mark.right { bottom: 18px; right: 22px; transform: scale(-1, -1); }
.quote-panel blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 22px;
}
.quote-panel cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wagyu);
}

/* ==========================================================================
   3. MONTHLY MEAT BOX SUBSCRIPTION
   ========================================================================== */
.boxes {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
}
.box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.box-card {
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.box-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.box-card.popular {
  border-color: var(--wagyu);
  box-shadow: 0 14px 30px rgba(139, 30, 30, 0.15);
}
.box-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wagyu);
  color: #fff;
  font-family: var(--impact);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 100px;
}
.box-card h3 {
  font-family: var(--impact);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.box-card .box-price {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--wagyu);
  margin: 6px 0 4px;
  font-weight: 800;
}
.box-card .box-price small {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-mute);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.box-card .box-pounds {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.box-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 8px;
}
.box-card ul li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
}
.box-card ul li::before {
  content: "\2713";
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}
.box-card .box-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  background: var(--ink);
  color: #fff;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.94rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.box-card.popular .box-cta {
  background: var(--wagyu);
}
.box-card .box-cta:hover {
  transform: translateY(-2px);
  background: var(--wagyu-dark);
}
.box-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.88rem;
  color: var(--ink-mute);
  font-style: italic;
}


/* ==========================================================================
   4. NEXT HARVEST DATES STRIP
   ========================================================================== */
.harvest-strip {
  padding: 60px 0 0;
  background: var(--ink);
}
.harvest-inner {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.harvest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}
.harvest-head h3 {
  color: #fff;
  margin: 0;
  font-size: 1.4rem;
  font-family: var(--serif);
}
.harvest-head .harvest-eyebrow {
  font-family: var(--impact);
  letter-spacing: 0.16em;
  font-size: 0.86rem;
  color: var(--amber);
}
.harvest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.harvest-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.harvest-card .harvest-animal {
  font-family: var(--impact);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--amber);
}
.harvest-card .harvest-when {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
}
.harvest-card .harvest-status {
  font-size: 0.82rem;
  color: rgba(244, 237, 224, 0.7);
}

/* ==========================================================================
   5. THIS WEEK AT THE FREEZER
   ========================================================================== */
.freezer {
  padding: 120px 0;
  background: var(--bg-deep);
}
.freezer-card {
  background: var(--ink);
  color: #f4ede0;
  border-radius: var(--radius-lg);
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 36px;
  align-items: stretch;
  box-shadow: var(--shadow-lg);
}
.freezer-col h3 {
  color: #fff;
  font-family: var(--impact);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}
.freezer-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(200, 123, 41, 0.65);
  animation: pulseDot 1.8s ease-out infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(200, 123, 41, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(200, 123, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 123, 41, 0); }
}
.freezer-col p {
  color: rgba(244, 237, 224, 0.78);
  font-size: 0.95rem;
}
.freezer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.freezer-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}
.freezer-item .freezer-name {
  font-family: var(--serif);
  font-size: 1.04rem;
  color: #fff;
}
.freezer-item .freezer-price {
  font-size: 0.88rem;
  color: rgba(244, 237, 224, 0.7);
  margin-left: 6px;
}
.freezer-badge {
  font-family: var(--impact);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}
.freezer-badge.available { background: var(--forest); color: #fff; }
.freezer-badge.low       { background: var(--amber); color: var(--ink); }
.freezer-badge.gone      { background: rgba(255,255,255,0.08); color: rgba(244,237,224,0.5); text-decoration: line-through; }
.freezer-update {
  font-size: 0.82rem;
  color: rgba(244, 237, 224, 0.55);
  font-style: italic;
}
.freezer-cta {
  display: block;
  margin-top: 14px;
  text-align: center;
  background: var(--wagyu);
  color: #fff;
  padding: 14px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.94rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.freezer-cta:hover { background: var(--wagyu-dark); transform: translateY(-2px); }


/* ==========================================================================
   6. GAME DAY BOX (inside community)
   ========================================================================== */
.gameday-card {
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(105, 190, 40, 0.4);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.gameday-card h4 {
  color: #fff;
  font-family: var(--impact);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.gameday-card .gameday-eyebrow {
  display: inline-block;
  font-family: var(--impact);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--hawks);
  margin-bottom: 6px;
}
.gameday-cuts {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gameday-cuts li {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.92);
}
.gameday-action {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.gameday-price {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--hawks);
  font-weight: 800;
}
.gameday-price small {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.08em;
  font-weight: 500;
}
.gameday-cta {
  background: var(--hawks);
  color: #002244;
  font-family: var(--impact);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  padding: 12px 22px;
  border-radius: 100px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.gameday-cta:hover { background: #5cab1f; transform: translateY(-2px); }

/* ==========================================================================
   7. MOBILE STICKY CTA BAR
   ========================================================================== */
.mobile-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  gap: 10px;
  transform: translateY(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-sticky-cta.show { transform: translateY(0); }
.mobile-sticky-cta a {
  flex: 1;
  background: var(--wagyu);
  color: #fff;
  padding: 14px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(139, 30, 30, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-sticky-cta a.secondary {
  background: var(--ink);
  box-shadow: 0 14px 28px rgba(31, 26, 20, 0.32);
}
.mobile-sticky-cta svg { width: 18px; height: 18px; }

/* ==========================================================================
   8. WHY-DIRECT TEXTURE
   ========================================================================== */
.why-table {
  position: relative;
  background-image:
    repeating-linear-gradient(
      45deg,
      rgba(31, 26, 20, 0.025) 0px,
      rgba(31, 26, 20, 0.025) 2px,
      transparent 2px,
      transparent 12px
    ),
    var(--bg);
}

/* ==========================================================================
   9. MEAT NEEDS CALCULATOR
   ========================================================================== */
.calc-needs {
  padding: 100px 0;
  background: var(--bg);
}
.calc-needs-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px;
  box-shadow: var(--shadow-sm);
}
.calc-needs-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.calc-needs-card .calc-sub {
  color: var(--ink-soft);
  margin-bottom: 26px;
  font-size: 0.98rem;
}
.calc-input-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.calc-input-row label {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
}
.calc-counter {
  display: inline-flex;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.calc-counter button {
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
  color: var(--wagyu);
  font-weight: 700;
  transition: background 0.2s ease;
}
.calc-counter button:hover { background: rgba(139, 30, 30, 0.08); }
.calc-counter span {
  min-width: 50px;
  text-align: center;
  font-family: var(--impact);
  font-size: 1.5rem;
  color: var(--ink);
}
.calc-result {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  display: grid;
  gap: 8px;
}
.calc-result-key {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.calc-result-val {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--wagyu);
  font-weight: 700;
  transition: color 0.3s ease;
}
.calc-result-val.flash { color: var(--amber); }

/* ==========================================================================
   RESPONSIVE: ROUND 2 ADDITIONS
   ========================================================================== */
@media (max-width: 960px) {
  .trust-row .trust-inner { grid-template-columns: repeat(2, 1fr); padding: 24px 18px; }
  .box-grid { grid-template-columns: 1fr; max-width: 460px; }
  .harvest-grid { grid-template-columns: 1fr 1fr; }
  .freezer-card { grid-template-columns: 1fr; padding: 30px 24px; gap: 28px; }
  .gameday-card { grid-template-columns: 1fr; }
  .gameday-action { text-align: left; align-items: flex-start; }
}

@media (max-width: 680px) {
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 80px; }
  .quote-panel { padding: 32px 24px; }
  .quote-panel blockquote { font-size: 1.18rem; }
  .freezer-card { padding: 24px 18px; }
  .calc-needs-card { padding: 28px 22px; }
  .harvest-grid { grid-template-columns: 1fr; }
  .corner-ornament { width: 36px; height: 36px; }
  .family-quote { padding: 60px 0; }
  .boxes, .freezer, .calc-needs { padding: 80px 0; }
}


/* ==========================================================================
   ROUND 3 — VISUAL UPGRADE: padding cuts (-33%), hero asymmetric,
   farmy backgrounds, hover glows, clickable product cards
   ========================================================================== */

/* ---- 1. PADDING CUTS (-33%) — premium DTC standard ---- */
.story, .products, .order, .cuts, .why, .gallery,
.faq, .visit, .contact, .community, .boxes, .freezer, .calc-needs {
  padding: 80px 0 !important;
}
.hero { padding: 96px 0 60px !important; }
.family-quote { padding: 56px 0 !important; }

@media (min-width: 961px) {
  .story, .products, .order, .cuts, .why, .gallery,
  .faq, .visit, .contact, .community, .boxes, .freezer, .calc-needs {
    padding: 96px 0 !important;
  }
  .hero { padding: 120px 0 80px !important; }
}

@media (max-width: 680px) {
  .story, .products, .order, .cuts, .why, .gallery,
  .faq, .visit, .contact, .community, .boxes, .freezer, .calc-needs {
    padding: 56px 0 !important;
  }
  .hero { padding: 90px 0 48px !important; }
  .family-quote { padding: 44px 0 !important; }
}

/* Tighten section sub margin */
.section-sub { margin-bottom: 36px !important; }
@media (max-width: 680px) {
  .section-sub { margin-bottom: 28px !important; }
}

/* ---- 2. HERO ASYMMETRIC: text left, image-card right (desktop) ---- */
.hero-card { display: none; }
@media (min-width: 961px) {
  .hero-card { display: block; }
  .hero { min-height: 88vh; }
  .hero .container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 60px;
  }
  .hero-bg { display: none; }
  .hero-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(15, 12, 8, 0.55), 0 12px 28px -12px rgba(139, 30, 30, 0.25);
    aspect-ratio: 4 / 5;
    border: 8px solid #f8f4ee;
  }
  .hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(15,12,8,0.35) 100%);
    pointer-events: none;
  }
  /* Light theme hero on desktop now */
  .hero { background: linear-gradient(135deg, #faf6ee 0%, #f1ebdd 100%); }
  .hero-content { color: var(--ink); max-width: 100%; }
  .hero h1 { color: var(--ink); text-shadow: none; }
  .hero h1 .accent { color: var(--wagyu); }
  .hero-sub { color: var(--ink-soft); text-shadow: none; }
  .hero-eyebrow {
    color: var(--wagyu);
    background: rgba(139, 30, 30, 0.08);
    border-color: rgba(139, 30, 30, 0.25);
  }
  .hero-trust span { color: var(--ink-soft); }
  .hero-trust span::before { background: var(--wagyu); }
  .hero .btn-outline {
    color: var(--ink);
    border-color: var(--ink);
  }
  .hero .btn-outline:hover {
    background: var(--ink);
    color: var(--bg);
  }
}

/* ---- 3. STORY: chicken silhouette pattern background ---- */
.story {
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'><g fill='%238b1e1e' opacity='0.07'><path d='M40 110c-1-4 0-9 3-13 2-3 6-5 10-5 1-3 4-5 8-5 5 0 9 3 11 8 4 1 7 4 7 9 0 6-5 11-12 11h-23c-2 0-4-2-4-5z'/><path d='M65 88c-1-2-1-4 1-5 1-1 3 0 4 2l1 3'/><circle cx='66' cy='91' r='1' fill='%238b1e1e'/><path d='M62 105l-2 8M68 105l2 8M74 105l-2 8'/><path d='M130 50c-1-3 0-7 3-10 3-3 7-4 10-3 1-2 4-4 7-3 4 1 6 4 6 8 3 1 5 4 5 8 0 5-4 9-9 9h-19c-2 0-4-1-4-3z'/><path d='M148 35c-1-2 0-4 2-4 1-1 3 1 3 3'/><circle cx='150' cy='37' r='0.8' fill='%238b1e1e'/><path d='M133 52l-1 6M138 52l1 6M143 52l-1 6'/></g></svg>");
  background-size: 240px 240px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
.story .container { position: relative; z-index: 1; }
.story::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200, 123, 41, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ---- 4. CUTS: farmy SVG background (haybales, pitchforks, windmill) ---- */
.cuts {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, #faf6ee 100%);
}
.cuts::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320' viewBox='0 0 320 320'><g fill='none' stroke='%238b1e1e' stroke-width='1.4' opacity='0.10' stroke-linecap='round' stroke-linejoin='round'><!-- windmill --><circle cx='60' cy='60' r='2'/><line x1='60' y1='60' x2='60' y2='95'/><path d='M60 60 L80 50 M60 60 L40 50 M60 60 L80 70 M60 60 L40 70'/><!-- pitchfork --><line x1='240' y1='40' x2='240' y2='90'/><path d='M232 40 L232 30 M236 40 L236 28 M240 40 L240 26 M244 40 L244 28 M248 40 L248 30'/><!-- haybale (round) --><ellipse cx='80' cy='240' rx='32' ry='22'/><ellipse cx='80' cy='240' rx='22' ry='15'/><ellipse cx='80' cy='240' rx='12' ry='8'/><!-- sun rays --><circle cx='260' cy='230' r='12'/><line x1='260' y1='210' x2='260' y2='204'/><line x1='260' y1='256' x2='260' y2='250'/><line x1='240' y1='230' x2='234' y2='230'/><line x1='286' y1='230' x2='280' y2='230'/><line x1='246' y1='216' x2='242' y2='212'/><line x1='278' y1='244' x2='274' y2='248'/><!-- chicken --><path d='M170 160c-1-3 0-6 2-8 2-2 5-3 7-2 1-2 3-3 5-2 3 1 5 3 5 6 2 1 4 3 4 6 0 4-3 7-7 7h-14c-1 0-2-1-2-2z'/><line x1='178' y1='168' x2='177' y2='173'/><line x1='182' y1='168' x2='183' y2='173'/></g></svg>");
  background-size: 380px 380px;
  background-repeat: repeat;
  pointer-events: none;
  z-index: 0;
}
.cuts .container { position: relative; z-index: 1; }

/* Cut tile upgrade — homier, more shadow, hover */
.cut-tile {
  background: #fff !important;
  border: 1px solid rgba(139, 30, 30, 0.12) !important;
  box-shadow: 0 2px 8px rgba(31, 26, 20, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}
.cut-tile:hover {
  transform: translateY(-3px) !important;
  border-color: var(--wagyu) !important;
  box-shadow: 0 12px 24px -8px rgba(139, 30, 30, 0.22), 0 4px 8px rgba(139, 30, 30, 0.10) !important;
}
.cut-tile-icon {
  background: linear-gradient(135deg, rgba(139, 30, 30, 0.12), rgba(200, 123, 41, 0.10)) !important;
}

/* ---- 5. PRODUCT CARDS: clickable + soft red glow on hover ---- */
.product-card {
  cursor: pointer;
  background: #fff !important;
  border: 1px solid rgba(139, 30, 30, 0.10) !important;
  text-decoration: none !important;
  color: inherit !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--wagyu) !important;
  box-shadow:
    0 0 36px rgba(139, 30, 30, 0.22),
    0 18px 36px -12px rgba(139, 30, 30, 0.30),
    0 6px 12px rgba(139, 30, 30, 0.10) !important;
}
.product-card:hover .product-icon {
  background: linear-gradient(135deg, rgba(139, 30, 30, 0.18), rgba(200, 123, 41, 0.14)) !important;
  transform: scale(1.05);
}
.product-icon {
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Make products section richer + a touch farmy in the bg */
.products {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f1ebdd 0%, #faf6ee 100%) !important;
}
.products::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(139, 30, 30, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.products::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(200, 123, 41, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.products .container { position: relative; z-index: 1; }

/* ---- 6. TIGHTEN TYPOGRAPHY (mobile readability + 3rd-grade target) ---- */
.product-card p { font-size: 0.96rem !important; line-height: 1.5 !important; }
.section-title { letter-spacing: 0.04em; }

@media (max-width: 680px) {
  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem) !important; }
  .section-sub { font-size: 1rem !important; line-height: 1.55 !important; }
  .product-card { padding: 28px 22px !important; }
  .product-card h3 { font-size: 1.4rem !important; }
}

/* Cut some inter-element gaps in story */
.story-text p { margin-bottom: 14px; }
.story-stats { margin-top: 28px !important; }


/* ==========================================================================
   ROUND 4 — VISUAL POLISH: bug fixes, white-space cuts, farm-life palette
   ========================================================================== */

/* Extend palette: pasture sage + wheat gold for farm-life depth */
:root {
  --pasture: #5a6e4a;            /* sage green — grass / no hormones / trust */
  --pasture-soft: rgba(90, 110, 74, 0.10);
  --wheat: #d4a83a;              /* honey wheat — slightly more golden than amber */
  --sky: #6b89a4;                /* dusty rural sky — used very sparingly */
  --bg-cream: #faf6ee;           /* warmer than --bg */
}

/* ---- 1. PRODUCTS GRID: 4-col 4+2 → 3-col 3+3 balanced ---- */
@media (min-width: 961px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1000px;
    margin: 0 auto;
    gap: 28px !important;
  }
}
@media (min-width: 1200px) {
  .products-grid {
    max-width: 1100px;
    gap: 32px !important;
  }
}

/* Slimmer product cards (less 36/28 padding) */
.product-card {
  padding: 30px 24px !important;
}
.product-card .product-icon {
  margin-bottom: 16px !important;
  width: 60px !important;
  height: 60px !important;
}
.product-card h3 {
  margin-bottom: 8px !important;
}
.product-card p {
  margin-bottom: 14px !important;
}

/* ---- 2. HERO: tighter padding desktop, image bigger / less letterbox ---- */
@media (min-width: 961px) {
  .hero { padding: 96px 0 64px !important; min-height: 80vh !important; }
  .hero .container {
    grid-template-columns: 1.05fr 1fr !important;
    gap: 56px !important;
  }
  .hero-card {
    aspect-ratio: 4 / 4.6 !important;  /* less tall, more square */
  }
  .hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem) !important; }
  .hero-sub { margin-bottom: 28px !important; }
  .hero-ctas { margin-bottom: 32px !important; }
}

/* ---- 3. WHITE-SPACE CUTS across the page ---- */
.section-sub {
  margin-bottom: 28px !important;
  font-size: 1.05rem !important;
}
@media (min-width: 961px) {
  .section-sub { margin-bottom: 32px !important; }
}

/* Story grid gap was 80px, way too much */
@media (min-width: 961px) {
  .story-grid { gap: 56px !important; }
  .order-grid { gap: 48px !important; margin-bottom: 48px !important; }
  .visit-grid { gap: 48px !important; }
  .community .container { gap: 56px !important; }
}

/* Trust row tighter */
.trust-row .trust-inner {
  padding: 22px 22px !important;
  margin-top: -36px !important;
}

/* Cards / panels — slimmer padding */
.contact-form-wrap { padding: 32px !important; }
@media (max-width: 680px) { .contact-form-wrap { padding: 24px 20px !important; } }
.freezer-card { padding: 32px !important; gap: 28px !important; }
.gameday-card { padding: 22px !important; margin-top: 24px !important; }
.calc-needs-card { padding: 28px !important; }
.box-card { padding: 30px 26px !important; }

/* FAQ list — tighter rows (padding lives on .faq-question, not .faq-item) */
.faq-list { gap: 10px !important; }
.faq-question { padding: 18px 22px !important; }
.faq-answer { padding: 0 22px !important; }
.faq-item.open .faq-answer { padding-bottom: 18px !important; }

/* Family quote */
.family-quote { padding: 48px 0 !important; }
.quote-panel { padding: 28px 32px !important; }

/* Trust row mobile collapse */
@media (max-width: 680px) {
  .trust-row .trust-inner {
    padding: 18px 16px !important;
    margin-top: -28px !important;
    gap: 12px !important;
  }
}

/* ---- 4. FARM-LIFE COLOR ACCENTS ---- */
/* Trust signals get pasture-green tinge — "raised on grass" feel */
.trust-cell-icon {
  background: linear-gradient(135deg, var(--pasture-soft), rgba(200, 123, 41, 0.08)) !important;
  color: var(--pasture) !important;
}

/* Story stat numbers alternate: red, sage, amber — not all-red */
.story-stat:nth-child(1) .num { color: var(--wagyu) !important; }
.story-stat:nth-child(2) .num { color: var(--pasture) !important; }
.story-stat:nth-child(3) .num { color: var(--amber) !important; }

/* Hero-eyebrow on desktop: warm wheat dot */
@media (min-width: 961px) {
  .hero-eyebrow::before {
    background: var(--wheat) !important;
    box-shadow: 0 0 8px var(--wheat) !important;
  }
}

/* Section-title accent underline (small, decorative) */
.section-title {
  position: relative;
  padding-bottom: 14px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--wagyu), var(--amber));
  border-radius: 3px;
}

/* Story image frame — warmer, more "farmhouse photo" */
.story-image img,
.hero-card {
  border: 8px solid var(--bg-cream) !important;
  box-shadow:
    0 24px 48px -16px rgba(31, 26, 20, 0.30),
    0 8px 16px -8px rgba(139, 30, 30, 0.18) !important;
}

/* Footer brighter farm-y stripe */
.footer-bottom {
  border-top: 2px solid var(--wagyu) !important;
  padding-top: 20px !important;
  margin-top: 32px !important;
}

/* Body / page background a touch warmer */
body {
  background: var(--bg-cream) !important;
}
.story          { background: var(--bg-cream) !important; }
.cuts           { background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-warm) 100%) !important; }

/* Subtle pasture-green accent for the "100% Family Owned" feel:
   the calc-result number reads as "good" stat */
.calc-result-val { color: var(--pasture) !important; }
.calc-result-val.flash { color: var(--wheat) !important; }

/* Hero CTA primary button — slightly richer red so it pops on cream */
@media (min-width: 961px) {
  .hero .btn-primary {
    background: linear-gradient(180deg, var(--wagyu), var(--wagyu-dark)) !important;
    box-shadow: 0 6px 18px -6px rgba(139, 30, 30, 0.50) !important;
  }
}

/* Cuts note inline phone in green-stamp style — tiny farm touch */
.cuts-note {
  margin-top: 28px !important;
}

/* Order section (dark) — warm up the dark with a hint of barn-wood */
.order {
  background: linear-gradient(180deg, #1f1a14 0%, #2a201a 100%) !important;
}

/* "Why" section — give the comparison rows a subtle farm-stripe feel */
.why-row.head { border-bottom: 2px solid var(--wagyu) !important; }

/* Mobile: prevent product card oversize on small screens */
@media (max-width: 680px) {
  .products-grid { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
  .product-card { padding: 22px 16px !important; }
  .product-card h3 { font-size: 1.25rem !important; }
  .product-card p { font-size: 0.88rem !important; }
  .product-card .product-icon { width: 52px !important; height: 52px !important; margin-bottom: 12px !important; }
  .product-card .product-icon svg { width: 30px !important; height: 30px !important; }
}

/* Mobile hero — prevent the long subtitle from stealing the screen */
@media (max-width: 680px) {
  .hero { min-height: auto !important; }
  .hero h1 { margin-bottom: 14px !important; }
  .hero-sub {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 22px !important;
  }
  .hero-trust { margin-top: 8px; }
}


/* ==========================================================================
   ROUND 5 — emoji icons, trust-row blend, clearer chicken pattern
   ========================================================================== */

/* Emoji product icons — bigger, no tinted bg circle, native color */
.product-icon-emoji {
  background: transparent !important;
  font-size: 56px !important;
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 auto 12px !important;
  filter: drop-shadow(0 2px 6px rgba(31, 26, 20, 0.18));
  transition: transform 0.3s ease;
}
.product-card:hover .product-icon-emoji {
  transform: scale(1.18) rotate(-4deg) !important;
  background: transparent !important;
}
@media (max-width: 680px) {
  .product-icon-emoji { font-size: 44px !important; margin-bottom: 8px !important; }
}

/* ---- TRUST-ROW: kill the dark stripe so it blends with cream surroundings ---- */
.trust-row {
  background: transparent !important;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}
.trust-row .trust-inner {
  background: #fff !important;
  border: 1px solid rgba(139, 30, 30, 0.10) !important;
  box-shadow:
    0 12px 32px -12px rgba(31, 26, 20, 0.18),
    0 4px 8px -4px rgba(139, 30, 30, 0.10);
  margin-top: 0 !important;
}
@media (max-width: 680px) {
  .trust-row { margin-top: -28px; }
}

/* ---- STORY: clearer chicken silhouette (replaces onion-looking pattern) ---- */
.story::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><g fill='%238b1e1e' opacity='0.08'><!-- chicken 1 --><path d='M50 130c-2-1-3-3-3-6 0-6 5-11 12-11 1-4 5-7 10-7 6 0 11 4 12 10 5 1 9 5 9 10 0 4-2 7-6 8 1 3 0 6-3 7-4 1-7-1-8-4l-2 6c-1 3-4 4-7 4-2 0-4-1-5-3l-2-4c-3 1-6 0-7-3z'/><path d='M59 116c-2-1-2-3-1-4l-3-2c-1-1-1-3 1-3l4 1'/><circle cx='62' cy='114' r='1.4' fill='%238b1e1e'/><path d='M68 138l-2 6M75 138l1 7M82 138l-1 5'/><!-- chicken 2 (smaller, mirrored) --><path d='M158 70c-1 1-3 2-5 1-4-1-7-5-6-9-3-1-5-4-4-7 1-3 4-5 7-4 1-2 4-3 6-2 5 1 8 5 7 9 4 0 7 3 7 7 0 3-2 5-5 6 0 3-2 5-5 5-1 0-3-1-3-2 0 2-2 4-4 4-2 0-3-1-3-3l-1-4-1-1z'/><circle cx='159' cy='75' r='1' fill='%238b1e1e'/><path d='M161 88l-1 4M166 88l1 5'/></g></svg>") !important;
  background-size: 320px 320px !important;
}

/* Counter numbers — use slightly tabular figures so they don't jiggle while animating */
.story-stat .num {
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 1ch;
}

/* Make the section-title underline a touch wider when story stat shows 237 */
.story-stat .num { letter-spacing: -0.02em; }


/* ==========================================================================
   ROUND 6 — FREEZER SECTION REDESIGN: old-school wooden butcher menu
   Wood plank background + parchment menu paper + dotted leaders +
   hand-stamped status badges
   ========================================================================== */

/* ---- Wood plank section background ---- */
.freezer {
  background:
    /* wood-grain stripes via repeating linear gradient */
    repeating-linear-gradient(
      90deg,
      rgba(70, 38, 18, 0) 0px,
      rgba(70, 38, 18, 0) 60px,
      rgba(70, 38, 18, 0.06) 60px,
      rgba(70, 38, 18, 0.06) 62px,
      rgba(70, 38, 18, 0) 62px,
      rgba(70, 38, 18, 0) 180px,
      rgba(40, 22, 10, 0.10) 180px,
      rgba(40, 22, 10, 0.10) 182px
    ),
    /* horizontal subtle grain */
    repeating-linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 0px,
      rgba(0, 0, 0, 0.03) 4px,
      rgba(0, 0, 0, 0) 8px
    ),
    /* warm wood color gradient */
    linear-gradient(180deg, #6a3e22 0%, #5a3219 50%, #4d2a14 100%) !important;
  position: relative;
  overflow: hidden;
}

/* knot-holes scattered subtly */
.freezer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80px 30px at 8% 22%, rgba(0, 0, 0, 0.18), transparent 70%),
    radial-gradient(ellipse 120px 40px at 92% 78%, rgba(0, 0, 0, 0.16), transparent 70%),
    radial-gradient(ellipse 60px 20px at 78% 12%, rgba(0, 0, 0, 0.12), transparent 70%);
  pointer-events: none;
}
.freezer .container { position: relative; z-index: 1; }

/* Section title on wood needs cream color + soft shadow */
.freezer .section-title {
  color: #f5e8c8 !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}
.freezer .section-sub {
  color: rgba(245, 232, 200, 0.85) !important;
}
.freezer .section-title::after {
  background: linear-gradient(90deg, #d4a83a, #c87b29) !important;
  height: 4px !important;
  width: 80px !important;
}

/* ---- The parchment menu card ---- */
.freezer-card {
  background:
    /* paper texture: faint cross-hatch + warm cream gradient */
    repeating-linear-gradient(
      45deg,
      rgba(120, 80, 30, 0) 0px,
      rgba(120, 80, 30, 0) 4px,
      rgba(120, 80, 30, 0.015) 4px,
      rgba(120, 80, 30, 0.015) 5px
    ),
    linear-gradient(180deg, #f8efd4 0%, #f3e6c4 100%) !important;
  color: #2d1d10 !important;
  border-radius: 6px !important;
  padding: 48px 56px !important;
  border: 1px solid rgba(70, 38, 18, 0.20);
  box-shadow:
    0 24px 48px -12px rgba(0, 0, 0, 0.55),
    0 8px 16px -8px rgba(0, 0, 0, 0.40),
    inset 0 0 60px rgba(120, 80, 30, 0.08);
  grid-template-columns: 1fr 1.6fr 1fr !important;
  gap: 44px !important;
  position: relative;
}

/* corner pins / nails on the menu paper */
.freezer-card::before,
.freezer-card::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #6b4520 0%, #2d1808 70%, #1a0e04 100%);
  box-shadow:
    inset -1px -1px 2px rgba(0, 0, 0, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.4);
}
.freezer-card::before { top: 16px; left: 16px; }
.freezer-card::after  { top: 16px; right: 16px; }

/* second pair of pins (bottom corners) via wrapper background-image */
.freezer-card {
  background-image:
    radial-gradient(circle 7px at 22px calc(100% - 22px), #2d1808 35%, transparent 38%),
    radial-gradient(circle 7px at calc(100% - 22px) calc(100% - 22px), #2d1808 35%, transparent 38%),
    repeating-linear-gradient(
      45deg,
      rgba(120, 80, 30, 0) 0px,
      rgba(120, 80, 30, 0) 4px,
      rgba(120, 80, 30, 0.015) 4px,
      rgba(120, 80, 30, 0.015) 5px
    ),
    linear-gradient(180deg, #f8efd4 0%, #f3e6c4 100%) !important;
}

/* ---- Left column: menu header ---- */
.freezer-col h3 {
  font-family: var(--impact);
  color: #2d1d10 !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
  border-bottom: 3px double #8b1e1e;
  padding-bottom: 10px;
  margin-bottom: 14px;
}
.freezer-eyebrow {
  color: #8b1e1e !important;
  font-weight: 800 !important;
}
.pulse-dot {
  background: #8b1e1e !important;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(139, 30, 30, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(139, 30, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(139, 30, 30, 0); }
}
.freezer-col p {
  color: #4a3520 !important;
  font-style: italic;
  font-family: var(--serif);
  font-size: 1rem !important;
}

/* ---- Menu list with dotted leaders ---- */
.freezer-list {
  border-top: 1px solid rgba(70, 38, 18, 0.25);
  padding-top: 8px !important;
  gap: 0 !important;
}
.freezer-item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px dashed rgba(70, 38, 18, 0.30) !important;
  border-radius: 0 !important;
  padding: 14px 4px !important;
  position: relative;
  align-items: baseline !important;
}
.freezer-item:last-child { border-bottom: none !important; }

/* item name + price grouping */
.freezer-item > span:first-child {
  display: flex !important;
  align-items: baseline;
  flex: 1;
  gap: 0;
  position: relative;
  overflow: hidden;
}

/* dotted leader line between name and price */
.freezer-item > span:first-child::after {
  content: "";
  flex: 1;
  margin: 0 8px 6px;
  border-bottom: 2px dotted rgba(70, 38, 18, 0.35);
  height: 0;
}

.freezer-item .freezer-name {
  font-family: var(--serif) !important;
  font-size: 1.18rem !important;
  font-weight: 700 !important;
  color: #2d1d10 !important;
  white-space: nowrap;
  order: 0;
}
.freezer-item .freezer-price {
  font-family: var(--impact) !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.04em;
  color: #8b1e1e !important;
  white-space: nowrap;
  margin-left: 0 !important;
  order: 2;
}

/* ---- Hand-stamped status badges ---- */
.freezer-badge {
  font-family: var(--impact) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.16em !important;
  padding: 6px 12px !important;
  border-radius: 3px !important;
  border: 2px solid currentColor;
  background: transparent !important;
  transform: rotate(-3deg);
  display: inline-block;
  flex-shrink: 0;
  text-transform: uppercase;
  font-weight: 900;
}
.freezer-badge.available {
  color: #2f5d3a !important;
  border-color: #2f5d3a !important;
  box-shadow: inset 0 0 0 2px transparent;
}
.freezer-badge.low {
  color: #b8651c !important;
  border-color: #b8651c !important;
  transform: rotate(-2deg);
}
.freezer-badge.gone {
  color: rgba(45, 29, 16, 0.45) !important;
  border-color: rgba(45, 29, 16, 0.35) !important;
  text-decoration: line-through !important;
  transform: rotate(-4deg);
}

/* ---- Right column: order info + CTA stamp ---- */
.freezer-update {
  color: #4a3520 !important;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem !important;
  border-bottom: 2px solid rgba(70, 38, 18, 0.35);
  padding-bottom: 10px;
  display: block;
}
.freezer-col:last-child p {
  color: #2d1d10 !important;
  font-style: normal !important;
  font-family: var(--serif) !important;
  font-size: 0.96rem !important;
}
.freezer-cta {
  background: linear-gradient(180deg, #a02525 0%, #6b1414 100%) !important;
  color: #f5e8c8 !important;
  border-radius: 4px !important;
  padding: 16px !important;
  border: 2px solid #4a0c0c !important;
  font-family: var(--impact) !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase;
  box-shadow:
    0 6px 14px -4px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  margin-top: 18px !important;
}
.freezer-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 18px -4px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  background: linear-gradient(180deg, #b02828 0%, #7b1818 100%) !important;
}

/* ---- Mobile: collapse to one column, keep the menu vibe ---- */
@media (max-width: 960px) {
  .freezer-card {
    grid-template-columns: 1fr !important;
    padding: 36px 28px !important;
    gap: 28px !important;
  }
  .freezer-col h3 { font-size: 1.4rem !important; }
}
@media (max-width: 680px) {
  .freezer-card {
    padding: 32px 22px !important;
  }
  .freezer-item .freezer-name { font-size: 1.05rem !important; }
  .freezer-item .freezer-price { font-size: 0.94rem !important; }
  .freezer-badge { font-size: 0.66rem !important; padding: 4px 9px !important; }
  /* on tight screens hide the dotted leader, just space it out */
  .freezer-item > span:first-child::after { display: none; }
  .freezer-item > span:first-child {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}


/* ==========================================================================
   ROUND 7 — KR LOGO MOBILE FIX: tighter circle crop + white pill bg
   so the logo's white background blends seamlessly with the navbar.
   ========================================================================== */

/* Tighter crop: image is square, container shorter than wide so only
   the barbed-wire circle shows (no "Ranches" script peeking in) */
.nav-logo .nav-mark {
  width: 48px !important;
  height: 30px !important;            /* was 38 — drops the script line */
  background: #fff !important;        /* matches logo's white background */
  border-radius: 6px !important;
  padding: 2px 0 !important;
  box-shadow: 0 1px 3px rgba(31, 26, 20, 0.08);
  overflow: hidden;
}
.nav-logo .nav-mark img.kr-logo-circle {
  width: 48px !important;
  height: auto !important;
  object-fit: cover;
  object-position: top center;
  margin-top: -2px;                   /* nudge up so circle is centered */
}

/* Mobile drawer logo — same tighter crop, larger size */
.mobile-mark {
  width: 88px !important;
  height: 56px !important;            /* was 64 — drops the script line */
  background: #fff !important;
  border-radius: 10px !important;
  padding: 4px 0 !important;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(31, 26, 20, 0.10);
}
.mobile-mark img.kr-logo-circle {
  width: 88px !important;
  height: auto !important;
  object-fit: cover;
  object-position: top center;
}

/* When navbar is at top (transparent bg), the white logo pill stands out.
   When scrolled (cream bg), logo pill matches with subtle shadow. */
#navbar.scrolled .nav-mark {
  box-shadow: 0 1px 3px rgba(31, 26, 20, 0.10);
}

/* BlueJay feather is the hidden owner-sign-in link. Subtle hover lift
   so curious users can find it; not advertised. */
.kr-owner-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.kr-owner-key:hover {
  opacity: 1;
  transform: translateY(-1px) scale(1.08);
}


/* ==========================================================================
   ROUND 8 — FREEZER MENU READABILITY: softer text, bigger type, better
   use of the open space on desktop and mobile.
   ========================================================================== */

/* ---- Soften the harsh near-black browns + reds ---- */
.freezer-card {
  color: #3d2a18 !important;            /* was #2d1d10 — warmer mid-brown */
}
.freezer-col h3 {
  color: #3d2a18 !important;            /* matches body */
  border-bottom-color: #a04444 !important; /* softer red rule */
}
.freezer-col p {
  color: #5a4632 !important;            /* slightly muted, easier on eyes */
  line-height: 1.6 !important;
}
.freezer-item .freezer-name {
  color: #3d2a18 !important;
}
.freezer-item .freezer-price {
  color: #9d3030 !important;            /* softer red than #8b1e1e */
}
.freezer-eyebrow {
  color: #9d3030 !important;
}
.pulse-dot {
  background: #9d3030 !important;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(157, 48, 48, 0.65); }
  70% { box-shadow: 0 0 0 12px rgba(157, 48, 48, 0); }
  100% { box-shadow: 0 0 0 0 rgba(157, 48, 48, 0); }
}

/* Section title above the menu — soften too */
.freezer .section-title {
  color: #f6ecc9 !important;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

/* ---- Use the open space: bigger type + better grid balance ---- */
@media (min-width: 961px) {
  /* Give the menu column more room (was 1fr 1.6fr 1fr) */
  .freezer-card {
    grid-template-columns: 0.9fr 2.1fr 1fr !important;
    padding: 56px 64px !important;
    gap: 52px !important;
  }

  /* Header column type */
  .freezer-col h3 {
    font-size: 1.95rem !important;       /* was 1.6 */
    line-height: 1.15 !important;
    margin-bottom: 18px !important;
  }
  .freezer-col p {
    font-size: 1.08rem !important;       /* was 1 */
  }

  /* Menu list type */
  .freezer-item {
    padding: 20px 6px !important;        /* was 14 4 */
  }
  .freezer-item .freezer-name {
    font-size: 1.42rem !important;       /* was 1.18 */
    letter-spacing: -0.005em;
  }
  .freezer-item .freezer-price {
    font-size: 1.18rem !important;       /* was 1.05 */
    letter-spacing: 0.04em;
  }
  .freezer-badge {
    font-size: 0.82rem !important;       /* was 0.72 */
    padding: 8px 14px !important;
  }

  /* CTA column — make the date / hold-message larger too */
  .freezer-update {
    font-size: 1.04rem !important;       /* was 0.92 */
    padding-bottom: 14px;
  }
  .freezer-col:last-child p {
    font-size: 1.08rem !important;
    line-height: 1.55;
  }
  .freezer-cta {
    padding: 18px !important;
    font-size: 1.05rem !important;
  }
}

/* ---- Mobile: softer, bigger type, more line-height ---- */
@media (max-width: 680px) {
  .freezer-card {
    padding: 36px 26px !important;
  }
  .freezer-col h3 {
    font-size: 1.55rem !important;
    line-height: 1.2;
  }
  .freezer-col p {
    font-size: 1.02rem !important;
    line-height: 1.55;
  }
  .freezer-item {
    padding: 16px 4px !important;
  }
  .freezer-item .freezer-name {
    font-size: 1.18rem !important;       /* was 1.05 */
  }
  .freezer-item .freezer-price {
    font-size: 1.04rem !important;       /* was 0.94 */
  }
  .freezer-badge {
    font-size: 0.74rem !important;
    padding: 6px 11px !important;
  }
  .freezer-update {
    font-size: 1rem !important;
  }
  .freezer-cta {
    font-size: 1rem !important;
    padding: 16px !important;
  }
}

/* The dotted leader line gets a touch softer too */
.freezer-item > span:first-child::after {
  border-bottom-color: rgba(70, 38, 18, 0.25) !important;
}
.freezer-item {
  border-bottom-color: rgba(70, 38, 18, 0.22) !important;
}


/* ==========================================================================
   ROUND 9 — animated full-width freezer underline + restore full logo
   ========================================================================== */

/* ---- 1. ANIMATED FREEZER UNDERLINE (full-width, draws in on scroll) ---- */
.freezer .section-title {
  display: inline-block;     /* so ::after width matches text width */
  position: relative;
  padding-bottom: 18px !important;
  /* h2 is centered already via section-title styles; inline-block + parent
     text-align: center keeps it horizontally centered while letting
     ::after match the actual text-line width */
}
.freezer .section-title::after {
  width: 100% !important;
  height: 4px !important;
  left: 0 !important;
  right: 0 !important;
  transform: translateX(0) scaleX(0) !important;
  transform-origin: center !important;
  background: linear-gradient(90deg, #d4a83a, #c87b29, #d4a83a) !important;
  background-size: 200% 100% !important;
  border-radius: 3px !important;
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.1s !important;
}
/* When the section enters the viewport (.reveal.in is added by the
   existing IntersectionObserver), the bar grows from center → full width */
.freezer .section-title.reveal.in::after {
  transform: translateX(0) scaleX(1) !important;
  animation: krUnderlineShimmer 6s linear 1.4s infinite;
}
@keyframes krUnderlineShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ---- 2. RESTORE FULL LOGO IN NAV + MOBILE MENU ---- */
/* Show the entire logo (barbed-wire circle + "Ranches" script) instead
   of the top-circle-only crop. Square container, object-fit: contain. */
.nav-logo .nav-mark {
  width: 48px !important;
  height: 48px !important;
  background: #fff !important;
  border-radius: 8px !important;
  padding: 4px !important;
  box-shadow: 0 1px 3px rgba(31, 26, 20, 0.10);
  overflow: visible;
}
.nav-logo .nav-mark img.kr-logo-circle {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  margin-top: 0 !important;
  display: block;
}

.mobile-mark {
  width: 96px !important;
  height: 96px !important;
  background: #fff !important;
  border-radius: 12px !important;
  padding: 8px !important;
  overflow: visible;
  box-shadow: 0 2px 8px rgba(31, 26, 20, 0.12);
}
.mobile-mark img.kr-logo-circle {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block;
}


/* ==========================================================================
   ROUND 10 — FREEZER WAITLIST FORM
   "When it's gone, it's gone! Join our waiting list" + inline email signup
   ========================================================================== */

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.waitlist-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto 28px !important;
  position: relative;
}

.waitlist-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 13px 16px;
  font-size: 0.98rem;
  font-family: var(--sans);
  color: #f5e8c8;
  background: rgba(0, 0, 0, 0.28);
  border: 1.5px solid rgba(245, 232, 200, 0.35);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.waitlist-form input[type="email"]::placeholder {
  color: rgba(245, 232, 200, 0.55);
}
.waitlist-form input[type="email"]:focus {
  border-color: #d4a83a;
  background: rgba(0, 0, 0, 0.40);
  box-shadow: 0 0 0 3px rgba(212, 168, 58, 0.18);
}

.waitlist-btn {
  flex: 0 0 auto;
  padding: 13px 22px;
  background: linear-gradient(180deg, #d4a83a 0%, #c87b29 100%);
  color: #2d1d10;
  border: 2px solid #8b5a14;
  border-radius: 6px;
  font-family: var(--impact);
  font-size: 0.94rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow:
    0 4px 12px -2px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.waitlist-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #e0b746 0%, #d28833 100%);
  box-shadow:
    0 8px 16px -3px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}
.waitlist-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Inline status message — slides in below the form on success / error */
.waitlist-msg {
  flex: 0 0 100%;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.96rem;
  min-height: 0;
  color: #f5e8c8;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.waitlist-msg.show {
  opacity: 1;
  transform: translateY(0);
  margin-top: 4px;
}
.waitlist-msg.success { color: #c8e6a0; }
.waitlist-msg.error { color: #f3a3a3; }

/* Hide the form fields once the user successfully signed up */
.waitlist-form.success input[type="email"],
.waitlist-form.success .waitlist-btn { display: none; }

@media (max-width: 680px) {
  .waitlist-form { gap: 8px; }
  .waitlist-form input[type="email"] { flex: 1 1 100%; }
  .waitlist-btn { width: 100%; }
}


/* ==========================================================================
   ROUND 11 — CUT TILE EMOJI ICONS (Don't Want a Whole Animal? section)
   ========================================================================== */

/* Replace the round red SVG-icon container with a transparent emoji block.
   Emoji renders at 30px so it's visible alongside the cut name + descriptor. */
.cut-tile-icon-emoji {
  background: transparent !important;
  border: none !important;
  width: 48px !important;
  height: 48px !important;
  font-size: 30px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0;
  color: inherit !important;
  filter: drop-shadow(0 2px 4px rgba(31, 26, 20, 0.15));
  transition: transform 0.25s ease;
  position: relative;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji",
    "Twemoji Mozilla", system-ui, sans-serif;
}

.cut-tile:hover .cut-tile-icon-emoji {
  transform: scale(1.15) rotate(-3deg);
}

/* Two-emoji combo — main emoji centered, accent floats top-right small */
.emoji-stack {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
}
.emoji-stack .emoji-accent {
  position: absolute;
  top: -8px;
  right: -10px;
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(31, 26, 20, 0.25));
  pointer-events: none;
}

@media (max-width: 680px) {
  .cut-tile-icon-emoji {
    width: 42px !important;
    height: 42px !important;
    font-size: 26px !important;
  }
  .emoji-stack .emoji-accent {
    font-size: 13px;
    top: -6px;
    right: -8px;
  }
}


/* ==========================================================================
   ROUND 12 — INTERACTIVE ORDER CALCULATOR
   Animal × Share → live price + yield + freezer + pickup-only badge
   ========================================================================== */

/* Two-step "pick animal / pick share" pill rows */
.calc-step {
  margin-bottom: 18px;
}
.calc-step-label {
  display: block;
  font-family: var(--impact);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber) !important;
  margin-bottom: 10px;
}
.calc-step-note {
  display: block;
  font-size: 0.78rem;
  color: rgba(244, 237, 224, 0.55);
  font-style: italic;
  margin-top: 8px;
}

.calc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.calc-pill {
  flex: 1 1 auto;
  min-width: 90px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(244, 237, 224, 0.82);
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease,
    transform 0.18s ease, color 0.18s ease;
  text-align: center;
}
.calc-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 237, 224, 0.32);
  transform: translateY(-1px);
}
.calc-pill.is-active {
  background: linear-gradient(180deg, var(--wagyu) 0%, var(--wagyu-dark) 100%);
  border-color: #4a0c0c;
  color: #fff;
  box-shadow: 0 4px 10px -3px rgba(139, 30, 30, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}
.calc-pill[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Big price card — the headline output */
.calc-price-card {
  background: linear-gradient(135deg, rgba(200, 123, 41, 0.18) 0%, rgba(139, 30, 30, 0.18) 100%);
  border: 1.5px solid rgba(200, 123, 41, 0.40);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 22px 0 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.calc-price-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 168, 58, 0.20) 0%, transparent 70%);
  pointer-events: none;
}
.calc-price-label {
  font-family: var(--impact);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  position: relative;
}
.calc-price-value {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4.4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  position: relative;
  transition: transform 0.25s ease;
}
.calc-price-value.flash {
  animation: priceFlash 0.4s ease;
}
@keyframes priceFlash {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.calc-price-sub {
  font-size: 0.84rem;
  color: rgba(244, 237, 224, 0.72);
  position: relative;
}

/* Pickup-only badge inside the output rows */
.calc-row-shipping .calc-val {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.calc-pickup-pill {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(47, 93, 58, 0.20);
  border: 1.5px solid rgba(132, 196, 142, 0.50);
  border-radius: 100px;
  color: #a8d4ad;
  font-family: var(--impact);
  font-size: 0.74rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.calc-shipping-note {
  font-size: 0.78rem;
  color: rgba(244, 237, 224, 0.55);
  font-style: italic;
  text-align: right;
}

.calc-disclaimer {
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(244, 237, 224, 0.50) !important;
  margin: 14px 0 18px !important;
  line-height: 1.55;
}

@media (max-width: 680px) {
  .calc-pill {
    min-width: 0;
    padding: 10px 8px;
    font-size: 0.88rem;
  }
  .calc-row-shipping .calc-val {
    align-items: flex-start;
  }
  .calc-shipping-note {
    text-align: left;
  }
}

/* Contact-form variant of the calculator — sits inside .contact-form-wrap
   above the form fields. Bordered block with a divider after it. */
.contact-calc {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.contact-calc .calc-price-card {
  margin-bottom: 0;
}
.contact-calc .calc-step:last-of-type {
  margin-bottom: 0;
}

/* Hidden when "no share" animals are picked (chicken/eggs/cuts) */
.calc-step.is-hidden { display: none; }


/* ==========================================================================
   ROUND 14 — COLORIZE TRUST ROW
   Each of the 4 trust cells gets its own farm-life accent color.
   ========================================================================== */

/* Shared treatment: solid colored circle, white icon inside, colored
   underline accent under each strong heading. Subtle hover lift. */
.trust-row .trust-cell {
  position: relative;
  padding-top: 6px;
  transition: transform 0.25s ease;
}
.trust-row .trust-cell:hover {
  transform: translateY(-2px);
}
.trust-row .trust-cell strong {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}
.trust-row .trust-cell strong::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.55;
}

/* Override the v4 sage-only icon — each cell gets a unique color via nth-child */

/* Cell 1: USDA-inspected — wagyu red (authority / certification) */
.trust-row .trust-cell:nth-child(1) {
  --cell-color: #9d3030;
}
/* Cell 2: No hormones — pasture green (clean / natural) */
.trust-row .trust-cell:nth-child(2) {
  --cell-color: #5a7d3a;
}
/* Cell 3: Family-owned — wheat gold (warm / personal) */
.trust-row .trust-cell:nth-child(3) {
  --cell-color: #c89a2a;
}
/* Cell 4: Yakima Valley pasture — harvest amber (landscape / sunset) */
.trust-row .trust-cell:nth-child(4) {
  --cell-color: #c87b29;
}

.trust-row .trust-cell .trust-cell-icon {
  background: linear-gradient(
    135deg,
    var(--cell-color) 0%,
    color-mix(in srgb, var(--cell-color) 70%, #000) 100%
  ) !important;
  color: #fff !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  box-shadow:
    0 6px 14px -4px color-mix(in srgb, var(--cell-color) 55%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;
}
.trust-row .trust-cell:hover .trust-cell-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow:
    0 10px 20px -4px color-mix(in srgb, var(--cell-color) 65%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}
.trust-row .trust-cell .trust-cell-icon svg {
  stroke-width: 2 !important;
  width: 22px;
  height: 22px;
}

/* The heading underline picks up the same cell color */
.trust-row .trust-cell:nth-child(1) strong { color: #2d1d10; }
.trust-row .trust-cell:nth-child(1) strong::after { background: #9d3030; }
.trust-row .trust-cell:nth-child(2) strong::after { background: #5a7d3a; }
.trust-row .trust-cell:nth-child(3) strong::after { background: #c89a2a; }
.trust-row .trust-cell:nth-child(4) strong::after { background: #c87b29; }

/* Tiny colored top stripe across the inner card so the row reads as
   the connecting strip of all 4 cell accents. */
.trust-row .trust-inner {
  position: relative;
  overflow: hidden;
}
.trust-row .trust-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    #9d3030 0%, #9d3030 25%,
    #5a7d3a 25%, #5a7d3a 50%,
    #c89a2a 50%, #c89a2a 75%,
    #c87b29 75%, #c87b29 100%
  );
}

/* Fallback for browsers without color-mix() — solid colors are still good */
@supports not (color: color-mix(in srgb, red 50%, blue)) {
  .trust-row .trust-cell .trust-cell-icon {
    background: var(--cell-color) !important;
    box-shadow: 0 6px 14px -4px rgba(0, 0, 0, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }
}





/* ─── Back-to-top button (universal pattern) ─── */
#back-to-top {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 55;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  background: #8b1e1e;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 14px 36px -10px rgba(15, 15, 15, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 300ms ease, transform 300ms ease, filter 200ms ease;
}
#back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
#back-to-top:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}
#back-to-top:active {
  transform: scale(0.95);
}
@media (min-width: 640px) {
  #back-to-top {
    bottom: 1.75rem;
    left: 1.75rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
