:root {
  --black: #111111;
  --ink: #18191a;
  --graphite: #2b2d2f;
  --white: #f4f0e8;
  --steel: #8a8d8f;
  --border: #d8d2c7;
  --copper: #a46a3f;
  --olive: #7a684a;
  --shadow: rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 280px minmax(280px, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 12px 42px 10px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.86);
  border-bottom: 1px solid rgba(244, 240, 232, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: block;
  width: 270px;
}

.brand img {
  display: block;
  width: 270px;
  height: auto;
}

.brand span {
  position: absolute;
  left: 34%;
  top: 47%;
  display: block;
  min-width: 138px;
  padding: 4px 5px 5px;
  background: #111;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.home-header .brand::after {
  content: "";
  position: absolute;
  left: 114px;
  top: 72px;
  z-index: 2;
  width: 112px;
  height: 5px;
  background: #111;
}

.header-knife {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  width: 100%;
  height: 66px;
  margin: 14px 0 0;
  overflow: hidden;
}

.header-knife img {
  display: block;
  width: auto;
  max-width: none;
  height: 108px;
  transform: translate(-24.5%, -35px);
}

.header-rule {
  position: relative;
  grid-column: 1 / 3;
  grid-row: 1;
  align-self: start;
  z-index: 3;
  height: 7px;
  margin: 71px clamp(46px, 8vw, 120px) 0 115px;
  pointer-events: none;
}

.header-rule::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #7d472c 0%, #b9794b 15%, var(--copper) 72%, rgba(164, 106, 63, 0.35) 100%);
  clip-path: polygon(0 50%, 1.5% 0, 72% 18%, 100% 50%, 72% 82%, 1.5% 100%);
}

.header-rule::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(18px, 4vw, 52px);
  width: clamp(28px, 5vw, 58px);
  height: 1px;
  background: rgba(185, 121, 75, 0.72);
  transform: skewX(-28deg);
  transform-origin: left center;
}

.site-header nav {
  grid-column: 1 / -1;
  grid-row: 2;
}

.site-header .header-actions {
  grid-column: 3;
  grid-row: 1;
}

nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  color: rgba(244, 240, 232, 0.82);
}

.header-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language {
  font-size: 13px;
  color: rgba(244, 240, 232, 0.72);
}

.button,
button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--copper);
  border-radius: 6px;
  padding: 0 20px;
  background: var(--copper);
  color: var(--white);
  font-weight: 650;
  cursor: pointer;
}

.button.small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

.button.ghost {
  background: transparent;
  color: currentColor;
  border-color: rgba(244, 240, 232, 0.45);
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--ink);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 44px;
  padding: 126px 7vw 72px;
  overflow: hidden;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--copper);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.8vw, 94px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 500;
}

h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 500;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(244, 240, 232, 0.78);
  font-size: 20px;
}

.hero-art {
  position: relative;
  min-height: 620px;
  border-left: 1px solid rgba(244, 240, 232, 0.11);
}

.blade {
  position: absolute;
  left: 14%;
  top: 46%;
  width: 68%;
  height: 48px;
  border-radius: 100% 24px 24px 100%;
  transform: rotate(-22deg);
  background:
    linear-gradient(90deg, transparent 0 5%, rgba(255,255,255,.45) 20%, transparent 42%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.16) 0 4px, rgba(0,0,0,.04) 4px 9px),
    linear-gradient(90deg, #d6d4ce, #777b7d 64%, #ece8dc);
  box-shadow: 0 42px 80px var(--shadow);
}

.blade::after {
  content: "";
  position: absolute;
  right: -84px;
  top: 0;
  width: 122px;
  height: 48px;
  background: inherit;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.blade-shadow {
  top: 53%;
  left: 2%;
  opacity: 0.2;
  filter: blur(8px);
}

.handle {
  position: absolute;
  left: 12%;
  top: 58%;
  width: 260px;
  height: 58px;
  border-radius: 999px;
  transform: rotate(-22deg);
  background:
    radial-gradient(circle at 24% 50%, rgba(255,255,255,.2) 0 7px, transparent 8px),
    linear-gradient(90deg, #5b4630, #9a7c52 48%, #4a392b);
  box-shadow: 0 28px 48px rgba(0, 0, 0, 0.35);
}

.box-shape {
  position: absolute;
  right: -4%;
  bottom: 12%;
  width: 58%;
  height: 250px;
  border: 1px solid rgba(164, 106, 63, 0.5);
  background: linear-gradient(135deg, #1d1d1d, #2c2b28);
  box-shadow: 0 36px 70px rgba(0, 0, 0, 0.38);
}

.spec-pill {
  position: absolute;
  left: 12%;
  bottom: 18%;
  padding: 11px 15px;
  border: 1px solid rgba(244, 240, 232, 0.18);
  border-radius: 999px;
  color: rgba(244, 240, 232, 0.72);
  font-size: 13px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #ebe5da;
}

.trust-band a {
  display: block;
  padding: 30px 7vw;
  border-right: 1px solid var(--border);
  transition: background-color 160ms ease, color 160ms ease;
}

.trust-band a:last-child {
  border-right: 0;
}

.trust-band a:hover {
  background: #f3ede3;
}

.trust-band a:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: -4px;
}

.trust-band span {
  display: block;
  margin-bottom: 8px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
}

#knife-types,
#damascus,
#handles {
  scroll-margin-top: 138px;
}

.intro,
.products,
.materials,
.care,
.buy,
.documents,
.global,
.global-catalog,
.tilda-map,
.catalog-hero,
.catalog-page,
.warranty-flow {
  padding: 92px 7vw;
}

.intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 70px;
  align-items: start;
}

.intro > p {
  margin: 34px 0 0;
  color: #4d4b46;
  font-size: 21px;
}

.section-heading {
  max-width: 780px;
}

.product-grid,
.material-grid,
.document-grid,
.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.product-card,
.material-card,
.document-grid article,
.build-grid article {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8f4ec;
}

.product-card.featured {
  border-color: rgba(164, 106, 63, 0.5);
}

.product-card p {
  margin-bottom: 10px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 780;
}

.product-card span {
  color: #69645c;
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--copper);
  font-weight: 760;
}

.mini-knife {
  width: 100%;
  height: 118px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(168deg, transparent 34%, #a7a7a1 35% 48%, transparent 49%),
    linear-gradient(168deg, transparent 19%, #7a684a 20% 28%, transparent 29%);
}

.mini-knife.santoku {
  background:
    linear-gradient(168deg, transparent 28%, #a7a7a1 29% 50%, transparent 51%),
    linear-gradient(168deg, transparent 16%, #7a684a 17% 28%, transparent 29%);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(360px, 0.9fr);
  gap: 64px;
  padding: 98px 7vw;
  align-items: center;
}

.product-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  background: radial-gradient(circle at 50% 20%, #2f2c27, #121212 68%);
}

.detail-knife {
  position: absolute;
  left: 11%;
  right: 6%;
  top: 44%;
  height: 60px;
  transform: rotate(-18deg);
  border-radius: 999px 24px 24px 999px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.2) 0 4px, rgba(0,0,0,.06) 4px 10px),
    linear-gradient(90deg, #6b5138 0 22%, #c4c0b8 23% 100%);
  box-shadow: 0 42px 78px rgba(0, 0, 0, 0.42);
}

.detail-box {
  position: absolute;
  left: 20%;
  bottom: 12%;
  width: 62%;
  height: 180px;
  border: 1px solid rgba(164, 106, 63, 0.48);
  background: linear-gradient(140deg, #222, #333029);
}

.product-info p {
  color: rgba(244, 240, 232, 0.76);
}

.specs {
  display: grid;
  gap: 0;
  margin: 30px 0;
  border-top: 1px solid rgba(244, 240, 232, 0.16);
}

.specs div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(244, 240, 232, 0.16);
}

.product-page-hero h1 {
  font-size: clamp(38px, 5vw, 68px);
}

.product-spec-page {
  padding: 92px 7vw;
}

.spec-table-light {
  display: grid;
  margin: 34px 0 0;
  border-top: 1px solid var(--border);
}

.spec-table-light div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 22px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.spec-table-light dt {
  color: #6b645c;
}

.spec-table-light dd {
  color: var(--ink);
}

dt {
  color: rgba(244, 240, 232, 0.55);
}

dd {
  margin: 0;
}

.material-grid {
  grid-template-columns: repeat(3, 1fr);
}

.material-card {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,0)),
    #f8f4ec;
}

.material-card.damascus {
  background:
    repeating-linear-gradient(135deg, rgba(43,45,47,.08) 0 5px, transparent 5px 12px),
    #f8f4ec;
}

.material-card.olive {
  background:
    linear-gradient(135deg, rgba(122,104,74,.28), transparent),
    #f8f4ec;
}

.document-grid article,
.build-grid article {
  min-height: 220px;
}

.document-grid span {
  display: inline-flex;
  margin-bottom: 32px;
  border: 1px solid var(--copper);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
}

.domain-switch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.domain-switch p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(244, 240, 232, 0.76);
  font-size: 19px;
}

.global {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 1.05fr);
  gap: 50px;
  align-items: center;
}

.global-copy p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(244, 240, 232, 0.76);
  font-size: 19px;
}

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

.global-card {
  min-height: 190px;
  border: 1px solid rgba(244, 240, 232, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(145deg, #1c1c1c, #2c2925);
}

.global-card strong {
  display: block;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  font-weight: 500;
  line-height: 1;
}

.global-card span {
  color: rgba(244, 240, 232, 0.72);
}

.catalog-rows {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--border);
}

.catalog-rows div {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}

.catalog-rows strong {
  color: var(--copper);
}

.catalog-rows span {
  color: #4d4b46;
}

.catalog-hero {
  padding-top: 150px;
}

.catalog-hero p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(244, 240, 232, 0.76);
  font-size: 20px;
}

.catalog-page {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 92px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: #f8f4ec;
}

.filter-panel h2 {
  margin-bottom: 18px;
  font-size: 28px;
}

.filter-panel label {
  display: block;
  margin: 12px 0;
  color: #4d4b46;
}

.catalog-list {
  display: grid;
  gap: 18px;
}

.catalog-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: #f8f4ec;
}

.featured-catalog {
  border-color: rgba(164, 106, 63, 0.54);
}

.warranty-flow ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 0;
  list-style: none;
}

.warranty-flow li {
  min-height: 190px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: #f8f4ec;
}

.faq-section {
  padding: 92px 7vw;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.faq-list article {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: #f8f4ec;
}

.care {
  border-top: 1px solid var(--border);
}

.care ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
}

.care li {
  min-height: 130px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8f4ec;
}

.buy {
  text-align: center;
}

.buy p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(244, 240, 232, 0.74);
}

.waitlist {
  display: flex;
  max-width: 580px;
  margin: 34px auto 0;
  gap: 12px;
}

.waitlist label {
  flex: 1;
  text-align: left;
  color: rgba(244, 240, 232, 0.66);
  font-size: 13px;
}

input {
  display: block;
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  border: 1px solid rgba(244, 240, 232, 0.24);
  border-radius: 6px;
  padding: 0 14px;
  background: rgba(244, 240, 232, 0.08);
  color: var(--white);
}

input[type="checkbox"] {
  display: inline-block;
  width: 18px;
  min-height: 18px;
  margin: 0 9px 0 0;
  vertical-align: -3px;
  accent-color: var(--copper);
}

.form-note {
  margin-top: 16px;
  font-size: 13px;
}

.marketplace-page,
.wholesale-page,
.contact-page {
  padding: 92px 7vw;
}

.marketplace-grid,
.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.marketplace-card,
.partner-grid article {
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: #f8f4ec;
}

.marketplace-card span,
.partner-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--copper);
  font-weight: 800;
}

.marketplace-card.disabled button {
  opacity: 0.56;
  cursor: not-allowed;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 34px auto 0;
  text-align: left;
}

.lead-form label {
  color: rgba(244, 240, 232, 0.66);
  font-size: 13px;
}

.lead-form input[type="checkbox"] {
  display: inline-flex;
  width: auto;
  min-height: 0;
  margin: 0 8px 0 0;
}

.consent-line {
  display: flex;
  align-items: center;
  color: rgba(244, 240, 232, 0.78);
}

.lead-form .full,
.lead-form button {
  grid-column: 1 / -1;
}

.care-page,
.care-steps,
.care-warning {
  padding: 92px 7vw;
}

.care-hero h1 {
  max-width: 960px;
}

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

.care-rule-grid article,
.step-list article {
  min-height: 220px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: #f8f4ec;
}

.care-rule-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--copper);
  font-weight: 800;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.care-warning {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  gap: 50px;
  align-items: start;
}

.care-warning ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.care-warning li {
  border: 1px solid rgba(244, 240, 232, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(244, 240, 232, 0.06);
}

.hero-photo {
  grid-template-columns: minmax(420px, 1.12fr) minmax(360px, 0.88fr);
  grid-template-rows: auto 1fr;
  column-gap: 6vw;
  row-gap: 28px;
  min-height: 610px;
  overflow: hidden;
  align-items: center;
  padding-top: 178px;
}

.hero-photo .hero-copy {
  grid-column: 1;
  grid-row: 2;
  max-width: 880px;
}

.hero-origin {
  grid-column: 1 / -1;
  grid-row: 1;
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 66px;
  align-items: center;
  gap: 18px;
  margin: 0;
}

.origin-mark {
  display: grid;
  width: 54px;
  height: 60px;
  place-items: center;
  color: var(--white);
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
}

.origin-rule {
  width: 1px;
  height: 54px;
  background: var(--copper);
}

.origin-copy {
  display: grid;
  grid-template-columns: max-content minmax(72px, 1fr) max-content;
  align-items: baseline;
  column-gap: 18px;
  flex: 1;
  line-height: 1.2;
}

.origin-copy::before {
  content: "";
  grid-column: 2;
  align-self: center;
  width: 100%;
  height: 9px;
  background:
    linear-gradient(45deg, transparent 42%, var(--copper) 43% 57%, transparent 58%) center / 9px 9px no-repeat,
    linear-gradient(90deg, rgba(164, 106, 63, 0.2), var(--copper) 50%, rgba(164, 106, 63, 0.2)) center / 100% 1px no-repeat;
}

.origin-copy span {
  grid-column: 1;
  color: var(--copper);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.origin-copy strong {
  grid-column: 3;
  justify-self: end;
  text-align: right;
  color: rgba(244, 240, 232, 0.88);
  font-family: Baskerville, Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 400;
}

.hero-photo h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 620;
  line-height: 1.08;
}

@media (min-width: 981px) {
  .hero-photo h1 span,
  .hero-photo .lead span {
    display: block;
  }
}

.damascus-visual {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  margin: 0;
  align-self: center;
}

.damascus-crop {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  overflow: hidden;
  border-top: 1px solid rgba(244, 240, 232, 0.22);
  border-bottom: 1px solid rgba(164, 106, 63, 0.58);
}

.damascus-crop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.damascus-visual figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  color: rgba(244, 240, 232, 0.66);
  font-size: 14px;
  line-height: 1.25;
}

.damascus-visual figcaption strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 0.9;
}

.hero-media {
  position: relative;
  display: flex;
  min-width: 0;
  margin: 0;
  align-items: center;
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 133.333%;
  max-width: none;
  height: auto;
  transform: translateX(-25%);
  border: 1px solid rgba(244, 240, 232, 0.12);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.42);
}

.product-grid-photo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-grid-photo .product-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.product-grid-photo .product-card .card-link {
  margin-top: auto;
  padding-top: 22px;
}

.product-card-image,
.catalog-image {
  display: block;
  width: 100%;
  aspect-ratio: 4.6 / 1;
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
  border: 1px solid #272727;
  background: #111;
}

.product-proof,
.product-package {
  margin: 0;
}

.product-proof img,
.product-package img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid rgba(244, 240, 232, 0.14);
}

.product-package img {
  aspect-ratio: 4.6 / 1;
}

.product-proof figcaption {
  margin-top: 10px;
  color: rgba(244, 240, 232, 0.56);
  font-size: 13px;
}

.catalog-item {
  grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 1.1fr);
  align-items: center;
}

.catalog-image {
  margin: 0;
}

.filter-subtitle {
  margin-top: 30px;
}

.purchase-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.purchase-choice {
  min-height: 380px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8f4ec;
}

.purchase-choice.featured-choice {
  border-color: rgba(164, 106, 63, 0.68);
}

.purchase-choice > span {
  color: var(--copper);
  font-weight: 800;
}

.purchase-choice h2 {
  margin-top: 22px;
}

.purchase-choice small {
  display: block;
  margin-top: 18px;
  color: #6b645c;
}

.dark-button {
  margin-top: 22px;
  background: var(--black);
  color: var(--white);
}

.product-strip {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
  padding: 92px 7vw;
}

.product-strip > img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border: 1px solid rgba(244, 240, 232, 0.14);
}

.product-strip p:not(.eyebrow) {
  color: rgba(244, 240, 232, 0.76);
}

.knife-types,
.damascus-explained {
  padding: 92px 7vw;
}

.knife-type-grid,
.damascus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.knife-type-grid article,
.damascus-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8f4ec;
}

.knife-type-grid span,
.damascus-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--copper);
  font-weight: 800;
}

.knife-type-grid strong {
  display: block;
  margin-top: 24px;
  color: var(--copper);
}

.section-lead {
  max-width: 820px;
  color: #4d4b46;
  font-size: 20px;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 240px minmax(0, 1fr) auto;
    gap: 16px;
    padding: 16px 22px;
  }

  .site-header nav {
    display: none;
  }

  .hero,
  .intro,
  .care-warning,
  .product-detail,
  .global,
  .catalog-page {
    grid-template-columns: 1fr;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    gap: 22px;
    padding-top: 154px;
  }

  .hero-photo {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(230px, 0.85fr);
    gap: 32px;
    align-items: center;
  }

  .hero-photo .hero-copy {
    order: 1;
  }

  .hero-photo .damascus-visual {
    order: 2;
  }

  .hero-copy {
    order: 2;
    padding-top: 0;
  }

  .hero-art {
    position: relative;
    order: 1;
    width: 100%;
    min-height: 285px;
    border-left: 0;
    opacity: 0.9;
    overflow: hidden;
  }

  .hero-art .blade-main {
    left: 15%;
    top: 34%;
    width: 54%;
  }

  .hero-art .blade-shadow {
    display: none;
  }

  .hero-art .handle {
    left: 14%;
    top: 48%;
    width: 190px;
  }

  .hero-art .box-shape {
    right: 8%;
    bottom: 8%;
    width: 40%;
    height: 132px;
  }

  .spec-pill {
    left: 22px;
    bottom: 1%;
  }

  .product-grid,
  .care ul,
  .care-rule-grid,
  .step-list,
  .marketplace-grid,
  .partner-grid,
  .document-grid,
  .build-grid,
  .global-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .material-grid {
    grid-template-columns: 1fr;
  }

  .catalog-item {
    grid-template-columns: 1fr;
  }

  .product-strip {
    grid-template-columns: 1fr;
  }

  .purchase-choice-grid {
    grid-template-columns: 1fr;
  }

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

  .filter-panel {
    position: static;
  }

  .warranty-flow ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 12px;
  }

  .brand img {
    width: 160px;
  }

  .brand {
    width: 160px;
  }

  .brand span {
    min-width: 82px;
    padding-left: 2px;
    padding-right: 2px;
    font-size: 11px;
  }

  .header-knife {
    height: 52px;
  }

  .header-knife img {
    height: 64px;
    transform: translate(-24.5%, -21px);
  }

  .header-rule {
    margin-top: 41px;
    margin-left: 68px;
    margin-right: 28px;
  }

  .home-header .brand::after {
    left: 67px;
    top: 42px;
    width: 68px;
    height: 4px;
  }

  .site-header .header-actions {
    display: none;
  }

  .hero-photo {
    grid-template-columns: 1fr;
  }

  .hero-photo .hero-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .hero-photo .damascus-visual {
    grid-column: 1;
    grid-row: 3;
  }

  .origin-copy {
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 12px;
  }

  .origin-copy::before {
    display: none;
  }

  .origin-copy strong {
    grid-column: 2;
  }

  .damascus-visual {
    max-width: 420px;
  }

  .language {
    display: none;
  }

  .hero,
  .intro,
  .products,
  .materials,
  .marketplace-page,
  .wholesale-page,
  .contact-page,
  .care-page,
  .care-steps,
  .care-warning,
  .documents,
  .global,
  .global-catalog,
  .tilda-map,
  .catalog-hero,
  .catalog-page,
  .warranty-flow,
  .faq-section,
  .product-spec-page,
  .care,
  .buy,
  .product-detail,
  .product-strip,
  .knife-types,
  .damascus-explained {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-art .blade-main {
    left: 8%;
    width: 60%;
  }

  .hero-art .handle {
    left: 8%;
    width: 168px;
  }

  .hero-art .box-shape {
    right: 4%;
    width: 38%;
  }

  .button-row,
  .waitlist,
  .lead-form {
    align-items: stretch;
    flex-direction: column;
  }

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

  .trust-band,
  .product-grid,
  .product-grid-photo,
  .purchase-choice-grid,
  .knife-type-grid,
  .damascus-grid,
  .care ul,
  .care-rule-grid,
  .step-list,
  .marketplace-grid,
  .partner-grid,
  .document-grid,
  .build-grid,
  .global-panel {
    grid-template-columns: 1fr;
  }

  .catalog-rows div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .warranty-flow ol {
    grid-template-columns: 1fr;
  }

  .trust-band a {
    padding: 24px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-band a:last-child {
    border-bottom: 0;
  }

  .product-visual {
    min-height: 420px;
  }

  .specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .spec-table-light div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
