:root {
  --tf-primary: #b91c1c;
  --tf-secondary: #1c1917;
  --tf-accent: #b45309;
  --tf-bg: #f7f3ed;
  --tf-text: #292524;
  --tf-radius: 8px;
  --tf-shadow: 0 2px 12px rgba(28, 25, 23, 0.08);
  --tf-header-h: 72px;
  --tf-section-space: 4.5rem;
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--tf-text);
  background: var(--tf-bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--tf-primary); }
img { max-width: 100%; height: auto; display: block; }
.tf-container { width: min(1280px, 100% - 2.5rem); margin: 0 auto; }
.tf-header { background: var(--tf-secondary); color: #fff; min-height: var(--tf-header-h); }
.tf-header__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; padding: 1rem 0; }
.tf-logo { font-family: "Playfair Display", Georgia, serif; font-size: 1.5rem; font-weight: 700; color: #fff; }
.tf-announcement { flex: 1; text-align: center; font-size: 0.85rem; margin: 0; opacity: 0.9; }
.tf-nav { display: flex; gap: 1rem; align-items: center; margin-left: auto; }
.tf-nav a, .tf-cart { color: #fff; font-weight: 600; font-size: 0.9rem; }
.tf-section { padding: var(--tf-section-space) 0; }
.tf-eyebrow { display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tf-accent); margin-bottom: 0.5rem; }
.tf-section-title { font-family: "Playfair Display", Georgia, serif; color: var(--tf-secondary); margin: 0 0 1.5rem; }
.tf-products { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
.tf-product-card { background: #fff; border-radius: var(--tf-radius); box-shadow: var(--tf-shadow); overflow: hidden; }
.tf-product-card h3 { font-size: 0.95rem; margin: 0.75rem; }
.tf-price { display: block; margin: 0 0.75rem 0.75rem; font-weight: 700; color: var(--tf-primary); }
.tf-footer { background: var(--tf-secondary); color: #d6d3d1; margin-top: var(--tf-section-space); }
.tf-footer__grid { display: grid; gap: 2rem; padding: 3rem 0 2rem; }
@media (min-width: 768px) { .tf-footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.tf-footer h2, .tf-footer h3 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.tf-footer__contact p { font-size: 0.875rem; margin: 0 0 0.75rem; }
.tf-footer__contact strong { display: block; font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: #a8a29e; margin-bottom: 0.2rem; }
.tf-footer__links a { display: block; margin-bottom: 0.5rem; }
.tf-footer__bottom { border-top: 1px solid #44403c; padding: 1rem 0; font-size: 0.8rem; text-align: center; }
.btn, .button, button[type=submit] {
  display: inline-block; padding: 0.75rem 1.5rem; background: var(--tf-primary); color: #fff;
  border: none; border-radius: var(--tf-radius); font-weight: 600; cursor: pointer;
}
