:root {
  --bg: #f4efe6;
  --bg-card: #fffaf3;
  --ink: #1c1914;
  --muted: #5c564c;
  --line: #d9d0c2;
  --accent: #8b3d1f;
  --accent-dark: #6e2f16;
  --ok: #2d4a32;
  --shadow: 0 12px 30px rgba(28, 25, 20, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

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

a { color: var(--accent); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.logo {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.logo span {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}

nav a:hover,
nav a.active { color: var(--accent); }

.hero {
  padding: 72px 0 28px;
}

.kicker {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 { font-size: clamp(2.3rem, 6vw, 4.2rem); max-width: 14ch; }

.lede {
  max-width: 42rem;
  margin-top: 18px;
  font-size: 1.15rem;
  color: var(--muted);
}

.section { padding: 28px 0 64px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
}

.section-head p { color: var(--muted); max-width: 36rem; }

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

.card {
  isolation: isolate;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 180px;
  display: grid;
  place-items: center;
  color: #efe6d6;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.4rem;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fffaf3;
}

.card-media.knife {
  background: #fffaf3 url("knife.jpg") center / contain no-repeat;
  color: transparent;
  height: 340px;
  overflow: hidden;
}
.card-media.tender {
  background: #fffaf3 url("tender.jpg") center / contain no-repeat;
  color: transparent;
  height: 340px;
  overflow: hidden;
}
.card-media.tumbler {
  background: #fffaf3 url("tumbler.jpg") center / contain no-repeat;
  color: transparent;
  height: 340px;
  overflow: hidden;
}

.card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; background: #fffaf3; position: relative; z-index: 1; }

.card h3 { font-size: 1.35rem; color: #1c1914; }

.card p { color: #3f3a33; font-size: 0.98rem; }

.why {
  font-size: 0.92rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.btn {
  display: inline-block;
  margin-top: auto;
  align-self: flex-start;
  background: var(--accent);
  color: #fffaf3;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.btn:hover { background: var(--accent-dark); }

.btn.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.prose {
  max-width: 40rem;
}

.prose p + p { margin-top: 1rem; }

.prose h1 { margin-bottom: 16px; }

form {
  display: grid;
  gap: 12px;
  max-width: 32rem;
}

label { font-size: 0.9rem; font-weight: 600; }

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffaf3;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
}

button.btn {
  border: 0;
  cursor: pointer;
  width: fit-content;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-inner a { color: var(--muted); text-decoration: none; }

@media (max-width: 800px) {
  .grid { grid-template-columns: 1fr; }
  nav { gap: 12px; }
  .hero { padding-top: 40px; }
}

.card-tumbler .card-media {
  display: grid;
  height: 340px;
  overflow: hidden;
  background: #fffaf3;
}

.card-tumbler .card-media img {
  width: auto;
  max-width: 100%;
  height: 340px;
  object-fit: contain;
  justify-self: center;
}

.card-tumbler,
.card-tumbler .card-body {
  background: #fffaf3;
  color: #1c1914;
}

.card-tumbler h3,
.card-tumbler p,
.card-tumbler .why,
.card-tumbler .why strong {
  color: inherit;
}


.card-knife .card-media img {
  width: auto;
  max-width: 100%;
  height: 340px;
  object-fit: contain;
  justify-self: center;
}


.hero-with-photo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.hero-copy { flex: 1; min-width: 0; }

.hero-photo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

@media (max-width: 800px) {
  .hero-with-photo { flex-direction: column; align-items: flex-start; }
  .hero-photo { width: 56px; height: 56px; }
}
