:root {
  --bg: #050608;
  --bg-alt: #111319;
  --accent: #c28b4b; /* leather / cattle tag */
  --accent-soft: #e4c08c;
  --text: #f5f5f5;
  --text-muted: #b3b3b3;
  --border: #272a33;
  --danger: #b63c3c;
  --success: #4fa666;
  --radius-lg: 18px;
  --radius-pill: 999px;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  background: radial-gradient(circle at top, #161925 0, #050608 55%);
  color: var(--text);
}

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

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.85));
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  background: radial-gradient(circle at top left, #2b1b10, #050608);
}

.brand-name {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.nav a {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  background: rgba(17, 19, 25, 0.8);
}

.nav a:hover {
  border-color: var(--accent-soft);
}

/* Layout */

.main {
  padding: 2rem 0 3rem;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 2rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--accent-soft);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-soft);
}

.hero-title {
  font-size: clamp(2.4rem, 3vw, 3rem);
  line-height: 1.05;
  margin-top: 1.1rem;
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  margin-top: 0.9rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 32rem;
}

.hero-ctas {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  border-radius: var(--radius-pill);
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  color: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e0a85a);
  color: #140f09;
  font-weight: 600;
}

.btn-outline {
  border-color: var(--border);
  background: rgba(10, 11, 15, 0.9);
}

.hero-meta {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

/* Hero card */

.hero-card {
  border-radius: 24px;
  padding: 1.3rem;
  background: radial-gradient(circle at top, #2e2013, #08090c);
  border: 1px solid rgba(194, 139, 75, 0.4);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
}

.hero-card-title {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero-card-weight {
  font-size: 1.7rem;
  margin-top: 0.4rem;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.9rem;
  font-size: 0.8rem;
}

.hero-chip {
  border-radius: 16px;
  padding: 0.7rem;
  background: rgba(5, 6, 8, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-chip-label {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-chip-value {
  margin-top: 0.2rem;
}

.hero-availability {
  margin-top: 1rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Sections */

.section {
  margin-top: 3rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  margin-bottom: 1.2rem;
}

.section-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.section-title {
  font-size: 1.4rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 28rem;
}

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

.card {
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  background: linear-gradient(to bottom right, rgba(17, 19, 25, 0.95), rgba(8, 9, 12, 0.98));
  border: 1px solid var(--border);
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.card-body {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.badge {
  display: inline-flex;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 1.8rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Responsive */

@media (max-width: 800px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 0.4rem;
  }
}

.beef-share-form {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(17, 19, 25, 0.9);
  border: 1px solid var(--border);
  display: grid;
  gap: 1rem;
}

.beef-share-form h2 {
  margin: 0 0 0.25rem 0;
  font-size: 1.2rem;
}

.beef-share-form .form-description {
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.beef-share-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.beef-share-form input,
.beef-share-form textarea,
.beef-share-form select {
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #0c0e12;
  color: var(--text);
  font: inherit;
}

.beef-share-form input::placeholder,
.beef-share-form textarea::placeholder {
  color: var(--text-muted);
}

.beef-share-form button {
  margin-top: 0.5rem;
}

/* Beef Share Form */
.beef-share-form {
  max-width: 600px;
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem;
  border-radius: 16px;
  background: #111319;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.beef-share-form h2 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
}

.beef-share-form .form-description {
  margin: -0.5rem 0 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.beef-share-form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--text-muted);
  gap: 0.4rem;
}

.beef-share-form input,
.beef-share-form select,
.beef-share-form textarea {
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #0c0e12;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}

.beef-share-form input::placeholder,
.beef-share-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.beef-share-form textarea {
  resize: vertical;
}

.beef-share-form button {
  margin-top: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
}