@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap");

:root {
  --bg0: #070604;
  --bg1: #0f0b07;
  --card: rgba(255, 255, 255, 0.04);
  --card2: rgba(255, 255, 255, 0.06);
  --line: rgba(200, 164, 90, 0.26);
  --text: rgba(255, 255, 255, 0.9);
  --muted: rgba(255, 255, 255, 0.7);
  --gold: #b98c45;
  --gold2: #e6c27a;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius: 0;
  --radius2: 0;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --pad-card: 22px;
  --rule: 1px solid rgba(200, 164, 90, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1100px 520px at 18% -8%, rgba(200, 164, 90, 0.16), transparent 62%),
    radial-gradient(900px 500px at 92% 12%, rgba(230, 194, 122, 0.09), transparent 58%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  overflow-x: hidden;
}

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 6, 4, 0.88);
  border-bottom: 1px solid rgba(200, 164, 90, 0.18);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) 0;
  min-height: 52px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 0;
  border: 1px solid rgba(200, 164, 90, 0.26);
  object-fit: cover;
  object-position: 50% 50%;
  background: #070604;
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2px;
  font-size: 22px;
  color: var(--gold2);
  text-shadow: 0 0 16px rgba(200, 164, 90, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 0;
  border: 1px solid transparent;
  transition: all 180ms ease;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(200, 164, 90, 0.35);
  background: rgba(200, 164, 90, 0.08);
}

.nav .active {
  color: var(--text);
  border-color: rgba(200, 164, 90, 0.45);
  background: rgba(200, 164, 90, 0.1);
}

.hero {
  padding: var(--space-3) 0 var(--space-4);
  border-bottom: var(--rule);
}

.hero--compact {
  padding-bottom: var(--space-3);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-4);
  align-items: stretch;
}

.hero-left {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-width: 38rem;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 0 1 auto;
}

.hero-lede {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(200, 164, 90, 0.35);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
}

.kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold2), var(--gold));
  box-shadow: 0 0 16px rgba(200, 164, 90, 0.35);
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.02;
  letter-spacing: 0.2px;
}

.hero--compact h1 {
  color: var(--gold2);
  font-weight: 600;
}

.heading-gold {
  color: var(--gold2);
  font-weight: 600;
}

.hero-callout {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.02;
  color: var(--gold2);
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-1);
}

.hero-feature-strip {
  margin-top: auto;
  margin-bottom: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.hero-feature-strip img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 0;
  border: 1px solid rgba(200, 164, 90, 0.5);
  background: rgba(200, 164, 90, 0.095);
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: transform 120ms ease, background 120ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(200, 164, 90, 0.15);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--muted);
}

.btn.secondary:hover {
  color: var(--text);
  border-color: rgba(200, 164, 90, 0.35);
}

.hero-art {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(200, 164, 90, 0.22);
  background: rgba(0, 0, 0, 0.2);
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: stretch;
  padding: var(--space-2) var(--space-2) 0;
}

.hero-art::after {
  content: none;
}

.hero-jar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
  object-fit: contain;
  object-position: 50% 100%;
  display: block;
}

.section {
  padding: var(--space-4) 0;
  border-top: var(--rule);
}

.section--tight-top {
  border-top: none;
  padding-top: var(--space-4);
}

.section-label {
  margin: 0 0 var(--space-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(230, 194, 122, 0.72);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.95);
}

.sub {
  margin: 0 0 var(--space-2);
  color: var(--muted);
  line-height: 1.6;
}

.sub--flush {
  margin-bottom: 0;
}

.sub--below-title {
  margin-bottom: var(--space-3);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  align-items: stretch;
}

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 164, 90, 0.2);
  border-top: 2px solid rgba(185, 140, 69, 0.55);
  padding: var(--pad-card);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card h3 {
  margin: 0 0 var(--space-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  letter-spacing: 0.2px;
}

.card--why-tallow h3 {
  color: var(--gold2);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.card--why-tallow .why-tallow-photo-wrap {
  margin-top: auto;
  margin-left: calc(var(--pad-card) * -1);
  margin-right: calc(var(--pad-card) * -1);
  margin-bottom: calc(var(--pad-card) * -1);
  padding-top: var(--space-3);
  width: calc(100% + var(--pad-card) * 2);
  max-width: none;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
  overflow: hidden;
}

.card--why-tallow .why-tallow-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.card--flush {
  padding: 0;
  overflow: hidden;
}

.card-head {
  padding: var(--pad-card);
  border-bottom: var(--rule);
}

.card-head__title {
  margin: 0 0 var(--space-1);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.95);
}

.card-head__lede {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 46rem;
}

.card--stack {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.stack-block {
  padding: var(--pad-card);
}

.stack-block--ruled {
  border-top: var(--rule);
  background: rgba(0, 0, 0, 0.18);
  flex: 1;
}

.h3-small {
  margin: 0 0 var(--space-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.note--tight {
  margin-top: var(--space-2);
}

.pill-row--tight {
  margin-top: var(--space-2);
}

.card--form h3 {
  margin-bottom: var(--space-1);
}

.form-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-footnote {
  margin: 0;
  padding: 0 var(--space-1);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.form-footnote a {
  color: var(--gold2);
  border-bottom: 1px solid rgba(200, 164, 90, 0.35);
  padding-bottom: 1px;
}

.form-footnote a:hover {
  color: #f0d9a8;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-top: var(--space-2);
}

.pill {
  padding: 8px 12px;
  border-radius: 0;
  background: rgba(200, 164, 90, 0.07);
  border: 1px solid rgba(200, 164, 90, 0.2);
  color: var(--muted);
  font-size: 13px;
}

.product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule);
  background: rgba(0, 0, 0, 0.16);
}

.product-thumb {
  border-radius: 0;
  border: none;
  border-right: var(--rule);
  background: transparent;
  overflow: hidden;
  padding: var(--space-2);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-thumb--jar {
  background: transparent;
}

.product-thumb:last-child {
  border-right: none;
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: block;
}

.jar-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 6, 4, 0.92);
}

.jar-media::before {
  content: "";
  position: absolute;
  inset: -10px;
  background-image: var(--jar-src);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.05);
  transform: scale(1.06);
}

.jar-media img.jar-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 50%;
  border: none;
  background: transparent;
  z-index: 1;
}

.product-thumb .label {
  margin-top: var(--space-2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.35;
}

.card--branded-packaging {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  min-height: 0;
  background: rgba(0, 0, 0, 0.22);
}

.branded-packaging-stack {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.branded-packaging-cell {
  flex: 1 1 50%;
  min-height: 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
}

.branded-packaging-cell:last-child {
  border-bottom: none;
}

.branded-packaging-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.nutrition {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.45;
}

.nutrition th {
  text-align: left;
  padding: 14px 14px 12px;
  font-size: 1.05em;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--gold2);
  border-bottom: 1px solid rgba(200, 164, 90, 0.45);
}

.nutrition td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  vertical-align: middle;
}

.nutrition td strong {
  color: var(--text);
  font-weight: 700;
  font-size: 1.06em;
}

.right {
  text-align: right;
  white-space: nowrap;
}

.indent {
  padding-left: 32px !important;
}

.note {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.form {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: var(--space-1);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  font-family: inherit;
}

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

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.help {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-top: -6px;
}

.status {
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 0;
  border: 1px solid rgba(200, 164, 90, 0.35);
  background: rgba(200, 164, 90, 0.12);
  color: var(--text);
  display: none;
}

.status.show {
  display: block;
}

.fineprint {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.55;
  margin-top: var(--space-2);
}

.btn--block {
  width: 100%;
}

footer {
  padding: var(--space-4) 0 var(--space-5);
  border-top: var(--rule);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-inner .links {
  display: flex;
  gap: 16px;
}

.footer-inner a {
  border-bottom: 1px solid rgba(200, 164, 90, 0.25);
  padding-bottom: 2px;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: none;
  display: none;
  z-index: 100;
  padding: 20px;
}

.modal-backdrop.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  width: min(640px, 100%);
  border-radius: 0;
  border: 1px solid rgba(200, 164, 90, 0.35);
  background: linear-gradient(180deg, rgba(20, 14, 9, 0.92), rgba(12, 9, 6, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
  padding: 18px;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.modal h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  letter-spacing: 0.2px;
}

.close {
  border-radius: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.modal p {
  color: var(--muted);
  line-height: 1.6;
  margin: 10px 0 14px;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: var(--space-3);
  }
  .hero-art {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .product-row {
    grid-template-columns: 1fr;
  }
  .product-thumb {
    border-right: none;
    border-bottom: var(--rule);
  }
  .product-thumb:last-child {
    border-bottom: none;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .nav {
    gap: var(--space-1);
  }
  .hero-callout {
    font-size: clamp(26px, 8vw, 38px);
  }
  .hero-feature-strip {
    margin-top: var(--space-3);
  }

  .hero-left {
    max-width: none;
  }

  .card--branded-packaging {
    min-height: 480px;
  }
}

